hci.h 8.5 KB

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