hci.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  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_hci_dev;
  24. struct nfc_hci_ops {
  25. int (*open) (struct nfc_hci_dev *hdev);
  26. void (*close) (struct nfc_hci_dev *hdev);
  27. int (*hci_ready) (struct nfc_hci_dev *hdev);
  28. int (*xmit) (struct nfc_hci_dev *hdev, struct sk_buff *skb);
  29. int (*start_poll) (struct nfc_hci_dev *hdev,
  30. u32 im_protocols, u32 tm_protocols);
  31. int (*target_from_gate) (struct nfc_hci_dev *hdev, u8 gate,
  32. struct nfc_target *target);
  33. int (*complete_target_discovered) (struct nfc_hci_dev *hdev, u8 gate,
  34. struct nfc_target *target);
  35. int (*data_exchange) (struct nfc_hci_dev *hdev,
  36. struct nfc_target *target,
  37. struct sk_buff *skb, struct sk_buff **res_skb);
  38. int (*check_presence)(struct nfc_hci_dev *hdev,
  39. struct nfc_target *target);
  40. };
  41. /* Pipes */
  42. #define NFC_HCI_INVALID_PIPE 0x80
  43. #define NFC_HCI_LINK_MGMT_PIPE 0x00
  44. #define NFC_HCI_ADMIN_PIPE 0x01
  45. struct nfc_hci_gate {
  46. u8 gate;
  47. u8 pipe;
  48. };
  49. #define NFC_HCI_MAX_CUSTOM_GATES 50
  50. struct nfc_hci_init_data {
  51. u8 gate_count;
  52. struct nfc_hci_gate gates[NFC_HCI_MAX_CUSTOM_GATES];
  53. char session_id[9];
  54. };
  55. typedef int (*xmit) (struct sk_buff *skb, void *cb_data);
  56. #define NFC_HCI_MAX_GATES 256
  57. struct nfc_hci_dev {
  58. struct nfc_dev *ndev;
  59. u32 max_data_link_payload;
  60. struct mutex msg_tx_mutex;
  61. struct list_head msg_tx_queue;
  62. struct work_struct msg_tx_work;
  63. struct timer_list cmd_timer;
  64. struct hci_msg *cmd_pending_msg;
  65. struct sk_buff_head rx_hcp_frags;
  66. struct work_struct msg_rx_work;
  67. struct sk_buff_head msg_rx_queue;
  68. struct nfc_hci_ops *ops;
  69. struct nfc_hci_init_data init_data;
  70. void *clientdata;
  71. u8 gate2pipe[NFC_HCI_MAX_GATES];
  72. u8 sw_romlib;
  73. u8 sw_patch;
  74. u8 sw_flashlib_major;
  75. u8 sw_flashlib_minor;
  76. u8 hw_derivative;
  77. u8 hw_version;
  78. u8 hw_mpw;
  79. u8 hw_software;
  80. u8 hw_bsid;
  81. };
  82. /* hci device allocation */
  83. struct nfc_hci_dev *nfc_hci_allocate_device(struct nfc_hci_ops *ops,
  84. struct nfc_hci_init_data *init_data,
  85. u32 protocols,
  86. int tx_headroom,
  87. int tx_tailroom,
  88. int max_link_payload);
  89. void nfc_hci_free_device(struct nfc_hci_dev *hdev);
  90. int nfc_hci_register_device(struct nfc_hci_dev *hdev);
  91. void nfc_hci_unregister_device(struct nfc_hci_dev *hdev);
  92. void nfc_hci_set_clientdata(struct nfc_hci_dev *hdev, void *clientdata);
  93. void *nfc_hci_get_clientdata(struct nfc_hci_dev *hdev);
  94. void nfc_hci_driver_failure(struct nfc_hci_dev *hdev, int err);
  95. /* Host IDs */
  96. #define NFC_HCI_HOST_CONTROLLER_ID 0x00
  97. #define NFC_HCI_TERMINAL_HOST_ID 0x01
  98. #define NFC_HCI_UICC_HOST_ID 0x02
  99. /* Host Controller Gates and registry indexes */
  100. #define NFC_HCI_ADMIN_GATE 0x00
  101. #define NFC_HCI_ADMIN_SESSION_IDENTITY 0x01
  102. #define NFC_HCI_ADMIN_MAX_PIPE 0x02
  103. #define NFC_HCI_ADMIN_WHITELIST 0x03
  104. #define NFC_HCI_ADMIN_HOST_LIST 0x04
  105. #define NFC_HCI_LOOPBACK_GATE 0x04
  106. #define NFC_HCI_ID_MGMT_GATE 0x05
  107. #define NFC_HCI_ID_MGMT_VERSION_SW 0x01
  108. #define NFC_HCI_ID_MGMT_VERSION_HW 0x03
  109. #define NFC_HCI_ID_MGMT_VENDOR_NAME 0x04
  110. #define NFC_HCI_ID_MGMT_MODEL_ID 0x05
  111. #define NFC_HCI_ID_MGMT_HCI_VERSION 0x02
  112. #define NFC_HCI_ID_MGMT_GATES_LIST 0x06
  113. #define NFC_HCI_LINK_MGMT_GATE 0x06
  114. #define NFC_HCI_LINK_MGMT_REC_ERROR 0x01
  115. #define NFC_HCI_RF_READER_B_GATE 0x11
  116. #define NFC_HCI_RF_READER_B_PUPI 0x03
  117. #define NFC_HCI_RF_READER_B_APPLICATION_DATA 0x04
  118. #define NFC_HCI_RF_READER_B_AFI 0x02
  119. #define NFC_HCI_RF_READER_B_HIGHER_LAYER_RESPONSE 0x01
  120. #define NFC_HCI_RF_READER_B_HIGHER_LAYER_DATA 0x05
  121. #define NFC_HCI_RF_READER_A_GATE 0x13
  122. #define NFC_HCI_RF_READER_A_UID 0x02
  123. #define NFC_HCI_RF_READER_A_ATQA 0x04
  124. #define NFC_HCI_RF_READER_A_APPLICATION_DATA 0x05
  125. #define NFC_HCI_RF_READER_A_SAK 0x03
  126. #define NFC_HCI_RF_READER_A_FWI_SFGT 0x06
  127. #define NFC_HCI_RF_READER_A_DATARATE_MAX 0x01
  128. #define NFC_HCI_TYPE_A_SEL_PROT(x) (((x) & 0x60) >> 5)
  129. #define NFC_HCI_TYPE_A_SEL_PROT_MIFARE 0
  130. #define NFC_HCI_TYPE_A_SEL_PROT_ISO14443 1
  131. #define NFC_HCI_TYPE_A_SEL_PROT_DEP 2
  132. #define NFC_HCI_TYPE_A_SEL_PROT_ISO14443_DEP 3
  133. /* Generic events */
  134. #define NFC_HCI_EVT_HCI_END_OF_OPERATION 0x01
  135. #define NFC_HCI_EVT_POST_DATA 0x02
  136. #define NFC_HCI_EVT_HOT_PLUG 0x03
  137. /* Reader RF gates events */
  138. #define NFC_HCI_EVT_READER_REQUESTED 0x10
  139. #define NFC_HCI_EVT_END_OPERATION 0x11
  140. /* Reader Application gate events */
  141. #define NFC_HCI_EVT_TARGET_DISCOVERED 0x10
  142. /* receiving messages from lower layer */
  143. void nfc_hci_resp_received(struct nfc_hci_dev *hdev, u8 result,
  144. struct sk_buff *skb);
  145. void nfc_hci_cmd_received(struct nfc_hci_dev *hdev, u8 pipe, u8 cmd,
  146. struct sk_buff *skb);
  147. void nfc_hci_event_received(struct nfc_hci_dev *hdev, u8 pipe, u8 event,
  148. struct sk_buff *skb);
  149. void nfc_hci_recv_frame(struct nfc_hci_dev *hdev, struct sk_buff *skb);
  150. /* connecting to gates and sending hci instructions */
  151. int nfc_hci_connect_gate(struct nfc_hci_dev *hdev, u8 dest_host, u8 dest_gate,
  152. u8 pipe);
  153. int nfc_hci_disconnect_gate(struct nfc_hci_dev *hdev, u8 gate);
  154. int nfc_hci_disconnect_all_gates(struct nfc_hci_dev *hdev);
  155. int nfc_hci_get_param(struct nfc_hci_dev *hdev, u8 gate, u8 idx,
  156. struct sk_buff **skb);
  157. int nfc_hci_set_param(struct nfc_hci_dev *hdev, u8 gate, u8 idx,
  158. const u8 *param, size_t param_len);
  159. int nfc_hci_send_cmd(struct nfc_hci_dev *hdev, u8 gate, u8 cmd,
  160. const u8 *param, size_t param_len, struct sk_buff **skb);
  161. int nfc_hci_send_response(struct nfc_hci_dev *hdev, u8 gate, u8 response,
  162. const u8 *param, size_t param_len);
  163. int nfc_hci_send_event(struct nfc_hci_dev *hdev, u8 gate, u8 event,
  164. const u8 *param, size_t param_len);
  165. #endif /* __NET_HCI_H */