hci.h 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. /*
  2. * Copyright (C) 2011 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
  15. * along with this program; if not, write to the
  16. * Free Software Foundation, Inc.,
  17. * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. */
  19. #ifndef __NET_HCI_H
  20. #define __NET_HCI_H
  21. #include <linux/skbuff.h>
  22. #include <net/nfc/nfc.h>
  23. struct nfc_phy_ops {
  24. int (*write)(void *dev_id, struct sk_buff *skb);
  25. int (*enable)(void *dev_id);
  26. void (*disable)(void *dev_id);
  27. };
  28. struct nfc_hci_dev;
  29. struct nfc_hci_ops {
  30. int (*open) (struct nfc_hci_dev *hdev);
  31. void (*close) (struct nfc_hci_dev *hdev);
  32. int (*hci_ready) (struct nfc_hci_dev *hdev);
  33. /*
  34. * xmit must always send the complete buffer before
  35. * returning. Returned result must be 0 for success
  36. * or negative for failure.
  37. */
  38. int (*xmit) (struct nfc_hci_dev *hdev, struct sk_buff *skb);
  39. int (*start_poll) (struct nfc_hci_dev *hdev,
  40. u32 im_protocols, u32 tm_protocols);
  41. int (*dep_link_up)(struct nfc_hci_dev *hdev, struct nfc_target *target,
  42. u8 comm_mode, u8 *gb, size_t gb_len);
  43. int (*dep_link_down)(struct nfc_hci_dev *hdev);
  44. int (*target_from_gate) (struct nfc_hci_dev *hdev, u8 gate,
  45. struct nfc_target *target);
  46. int (*complete_target_discovered) (struct nfc_hci_dev *hdev, u8 gate,
  47. struct nfc_target *target);
  48. int (*im_transceive) (struct nfc_hci_dev *hdev,
  49. struct nfc_target *target, struct sk_buff *skb,
  50. data_exchange_cb_t cb, void *cb_context);
  51. int (*tm_send)(struct nfc_hci_dev *hdev, struct sk_buff *skb);
  52. int (*check_presence)(struct nfc_hci_dev *hdev,
  53. struct nfc_target *target);
  54. int (*event_received)(struct nfc_hci_dev *hdev, u8 gate, u8 event,
  55. struct sk_buff *skb);
  56. int (*fw_upload)(struct nfc_hci_dev *hdev, const char *firmware_name);
  57. int (*discover_se)(struct nfc_hci_dev *dev);
  58. int (*enable_se)(struct nfc_hci_dev *dev, u32 se_idx);
  59. int (*disable_se)(struct nfc_hci_dev *dev, u32 se_idx);
  60. };
  61. /* Pipes */
  62. #define NFC_HCI_INVALID_PIPE 0x80
  63. #define NFC_HCI_LINK_MGMT_PIPE 0x00
  64. #define NFC_HCI_ADMIN_PIPE 0x01
  65. struct nfc_hci_gate {
  66. u8 gate;
  67. u8 pipe;
  68. };
  69. #define NFC_HCI_MAX_CUSTOM_GATES 50
  70. struct nfc_hci_init_data {
  71. u8 gate_count;
  72. struct nfc_hci_gate gates[NFC_HCI_MAX_CUSTOM_GATES];
  73. char session_id[9];
  74. };
  75. typedef int (*xmit) (struct sk_buff *skb, void *cb_data);
  76. #define NFC_HCI_MAX_GATES 256
  77. /*
  78. * These values can be specified by a driver to indicate it requires some
  79. * adaptation of the HCI standard.
  80. *
  81. * NFC_HCI_QUIRK_SHORT_CLEAR - send HCI_ADM_CLEAR_ALL_PIPE cmd with no params
  82. */
  83. enum {
  84. NFC_HCI_QUIRK_SHORT_CLEAR = 0,
  85. };
  86. struct nfc_hci_dev {
  87. struct nfc_dev *ndev;
  88. u32 max_data_link_payload;
  89. bool shutting_down;
  90. struct mutex msg_tx_mutex;
  91. struct list_head msg_tx_queue;
  92. struct work_struct msg_tx_work;
  93. struct timer_list cmd_timer;
  94. struct hci_msg *cmd_pending_msg;
  95. struct sk_buff_head rx_hcp_frags;
  96. struct work_struct msg_rx_work;
  97. struct sk_buff_head msg_rx_queue;
  98. struct nfc_hci_ops *ops;
  99. struct nfc_llc *llc;
  100. struct nfc_hci_init_data init_data;
  101. void *clientdata;
  102. u8 gate2pipe[NFC_HCI_MAX_GATES];
  103. u8 sw_romlib;
  104. u8 sw_patch;
  105. u8 sw_flashlib_major;
  106. u8 sw_flashlib_minor;
  107. u8 hw_derivative;
  108. u8 hw_version;
  109. u8 hw_mpw;
  110. u8 hw_software;
  111. u8 hw_bsid;
  112. int async_cb_type;
  113. data_exchange_cb_t async_cb;
  114. void *async_cb_context;
  115. u8 *gb;
  116. size_t gb_len;
  117. unsigned long quirks;
  118. };
  119. /* hci device allocation */
  120. struct nfc_hci_dev *nfc_hci_allocate_device(struct nfc_hci_ops *ops,
  121. struct nfc_hci_init_data *init_data,
  122. unsigned long quirks,
  123. u32 protocols,
  124. const char *llc_name,
  125. int tx_headroom,
  126. int tx_tailroom,
  127. int max_link_payload);
  128. void nfc_hci_free_device(struct nfc_hci_dev *hdev);
  129. int nfc_hci_register_device(struct nfc_hci_dev *hdev);
  130. void nfc_hci_unregister_device(struct nfc_hci_dev *hdev);
  131. void nfc_hci_set_clientdata(struct nfc_hci_dev *hdev, void *clientdata);
  132. void *nfc_hci_get_clientdata(struct nfc_hci_dev *hdev);
  133. void nfc_hci_driver_failure(struct nfc_hci_dev *hdev, int err);
  134. int nfc_hci_result_to_errno(u8 result);
  135. /* Host IDs */
  136. #define NFC_HCI_HOST_CONTROLLER_ID 0x00
  137. #define NFC_HCI_TERMINAL_HOST_ID 0x01
  138. #define NFC_HCI_UICC_HOST_ID 0x02
  139. /* Host Controller Gates and registry indexes */
  140. #define NFC_HCI_ADMIN_GATE 0x00
  141. #define NFC_HCI_ADMIN_SESSION_IDENTITY 0x01
  142. #define NFC_HCI_ADMIN_MAX_PIPE 0x02
  143. #define NFC_HCI_ADMIN_WHITELIST 0x03
  144. #define NFC_HCI_ADMIN_HOST_LIST 0x04
  145. #define NFC_HCI_LOOPBACK_GATE 0x04
  146. #define NFC_HCI_ID_MGMT_GATE 0x05
  147. #define NFC_HCI_ID_MGMT_VERSION_SW 0x01
  148. #define NFC_HCI_ID_MGMT_VERSION_HW 0x03
  149. #define NFC_HCI_ID_MGMT_VENDOR_NAME 0x04
  150. #define NFC_HCI_ID_MGMT_MODEL_ID 0x05
  151. #define NFC_HCI_ID_MGMT_HCI_VERSION 0x02
  152. #define NFC_HCI_ID_MGMT_GATES_LIST 0x06
  153. #define NFC_HCI_LINK_MGMT_GATE 0x06
  154. #define NFC_HCI_LINK_MGMT_REC_ERROR 0x01
  155. #define NFC_HCI_RF_READER_B_GATE 0x11
  156. #define NFC_HCI_RF_READER_B_PUPI 0x03
  157. #define NFC_HCI_RF_READER_B_APPLICATION_DATA 0x04
  158. #define NFC_HCI_RF_READER_B_AFI 0x02
  159. #define NFC_HCI_RF_READER_B_HIGHER_LAYER_RESPONSE 0x01
  160. #define NFC_HCI_RF_READER_B_HIGHER_LAYER_DATA 0x05
  161. #define NFC_HCI_RF_READER_A_GATE 0x13
  162. #define NFC_HCI_RF_READER_A_UID 0x02
  163. #define NFC_HCI_RF_READER_A_ATQA 0x04
  164. #define NFC_HCI_RF_READER_A_APPLICATION_DATA 0x05
  165. #define NFC_HCI_RF_READER_A_SAK 0x03
  166. #define NFC_HCI_RF_READER_A_FWI_SFGT 0x06
  167. #define NFC_HCI_RF_READER_A_DATARATE_MAX 0x01
  168. #define NFC_HCI_TYPE_A_SEL_PROT(x) (((x) & 0x60) >> 5)
  169. #define NFC_HCI_TYPE_A_SEL_PROT_MIFARE 0
  170. #define NFC_HCI_TYPE_A_SEL_PROT_ISO14443 1
  171. #define NFC_HCI_TYPE_A_SEL_PROT_DEP 2
  172. #define NFC_HCI_TYPE_A_SEL_PROT_ISO14443_DEP 3
  173. /* Generic events */
  174. #define NFC_HCI_EVT_HCI_END_OF_OPERATION 0x01
  175. #define NFC_HCI_EVT_POST_DATA 0x02
  176. #define NFC_HCI_EVT_HOT_PLUG 0x03
  177. /* Reader RF gates events */
  178. #define NFC_HCI_EVT_READER_REQUESTED 0x10
  179. #define NFC_HCI_EVT_END_OPERATION 0x11
  180. /* Reader Application gate events */
  181. #define NFC_HCI_EVT_TARGET_DISCOVERED 0x10
  182. /* receiving messages from lower layer */
  183. void nfc_hci_resp_received(struct nfc_hci_dev *hdev, u8 result,
  184. struct sk_buff *skb);
  185. void nfc_hci_cmd_received(struct nfc_hci_dev *hdev, u8 pipe, u8 cmd,
  186. struct sk_buff *skb);
  187. void nfc_hci_event_received(struct nfc_hci_dev *hdev, u8 pipe, u8 event,
  188. struct sk_buff *skb);
  189. void nfc_hci_recv_frame(struct nfc_hci_dev *hdev, struct sk_buff *skb);
  190. /* connecting to gates and sending hci instructions */
  191. int nfc_hci_connect_gate(struct nfc_hci_dev *hdev, u8 dest_host, u8 dest_gate,
  192. u8 pipe);
  193. int nfc_hci_disconnect_gate(struct nfc_hci_dev *hdev, u8 gate);
  194. int nfc_hci_disconnect_all_gates(struct nfc_hci_dev *hdev);
  195. int nfc_hci_get_param(struct nfc_hci_dev *hdev, u8 gate, u8 idx,
  196. struct sk_buff **skb);
  197. int nfc_hci_set_param(struct nfc_hci_dev *hdev, u8 gate, u8 idx,
  198. const u8 *param, size_t param_len);
  199. int nfc_hci_send_cmd(struct nfc_hci_dev *hdev, u8 gate, u8 cmd,
  200. const u8 *param, size_t param_len, struct sk_buff **skb);
  201. int nfc_hci_send_cmd_async(struct nfc_hci_dev *hdev, u8 gate, u8 cmd,
  202. const u8 *param, size_t param_len,
  203. data_exchange_cb_t cb, void *cb_context);
  204. int nfc_hci_send_response(struct nfc_hci_dev *hdev, u8 gate, u8 response,
  205. const u8 *param, size_t param_len);
  206. int nfc_hci_send_event(struct nfc_hci_dev *hdev, u8 gate, u8 event,
  207. const u8 *param, size_t param_len);
  208. int nfc_hci_target_discovered(struct nfc_hci_dev *hdev, u8 gate);
  209. u32 nfc_hci_sak_to_protocol(u8 sak);
  210. #endif /* __NET_HCI_H */