hci.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /*
  2. * Copyright (C) 2012 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 __LOCAL_HCI_H
  20. #define __LOCAL_HCI_H
  21. struct gate_pipe_map {
  22. u8 gate;
  23. u8 pipe;
  24. };
  25. struct hcp_message {
  26. u8 header; /* type -cmd,evt,rsp- + instruction */
  27. u8 data[];
  28. } __packed;
  29. struct hcp_packet {
  30. u8 header; /* cbit+pipe */
  31. struct hcp_message message;
  32. } __packed;
  33. /*
  34. * HCI command execution completion callback.
  35. * result will be a standard linux error (may be converted from HCI response)
  36. * skb contains the response data and must be disposed, or may be NULL if
  37. * an error occured
  38. */
  39. typedef void (*hci_cmd_cb_t) (struct nfc_hci_dev *hdev, int result,
  40. struct sk_buff *skb, void *cb_data);
  41. struct hcp_exec_waiter {
  42. wait_queue_head_t *wq;
  43. bool exec_complete;
  44. int exec_result;
  45. struct sk_buff *result_skb;
  46. };
  47. struct hci_msg {
  48. struct list_head msg_l;
  49. struct sk_buff_head msg_frags;
  50. bool wait_response;
  51. hci_cmd_cb_t cb;
  52. void *cb_context;
  53. unsigned long completion_delay;
  54. };
  55. struct hci_create_pipe_params {
  56. u8 src_gate;
  57. u8 dest_host;
  58. u8 dest_gate;
  59. } __packed;
  60. struct hci_create_pipe_resp {
  61. u8 src_host;
  62. u8 src_gate;
  63. u8 dest_host;
  64. u8 dest_gate;
  65. u8 pipe;
  66. } __packed;
  67. #define NFC_HCI_FRAGMENT 0x7f
  68. #define HCP_HEADER(type, instr) ((((type) & 0x03) << 6) | ((instr) & 0x3f))
  69. #define HCP_MSG_GET_TYPE(header) ((header & 0xc0) >> 6)
  70. #define HCP_MSG_GET_CMD(header) (header & 0x3f)
  71. int nfc_hci_hcp_message_tx(struct nfc_hci_dev *hdev, u8 pipe,
  72. u8 type, u8 instruction,
  73. const u8 *payload, size_t payload_len,
  74. hci_cmd_cb_t cb, void *cb_data,
  75. unsigned long completion_delay);
  76. u8 nfc_hci_pipe2gate(struct nfc_hci_dev *hdev, u8 pipe);
  77. void nfc_hci_hcp_message_rx(struct nfc_hci_dev *hdev, u8 pipe, u8 type,
  78. u8 instruction, struct sk_buff *skb);
  79. /* HCP headers */
  80. #define NFC_HCI_HCP_PACKET_HEADER_LEN 1
  81. #define NFC_HCI_HCP_MESSAGE_HEADER_LEN 1
  82. #define NFC_HCI_HCP_HEADER_LEN 2
  83. /* HCP types */
  84. #define NFC_HCI_HCP_COMMAND 0x00
  85. #define NFC_HCI_HCP_EVENT 0x01
  86. #define NFC_HCI_HCP_RESPONSE 0x02
  87. /* Generic commands */
  88. #define NFC_HCI_ANY_SET_PARAMETER 0x01
  89. #define NFC_HCI_ANY_GET_PARAMETER 0x02
  90. #define NFC_HCI_ANY_OPEN_PIPE 0x03
  91. #define NFC_HCI_ANY_CLOSE_PIPE 0x04
  92. /* Reader RF commands */
  93. #define NFC_HCI_WR_XCHG_DATA 0x10
  94. /* Admin commands */
  95. #define NFC_HCI_ADM_CREATE_PIPE 0x10
  96. #define NFC_HCI_ADM_DELETE_PIPE 0x11
  97. #define NFC_HCI_ADM_NOTIFY_PIPE_CREATED 0x12
  98. #define NFC_HCI_ADM_NOTIFY_PIPE_DELETED 0x13
  99. #define NFC_HCI_ADM_CLEAR_ALL_PIPE 0x14
  100. #define NFC_HCI_ADM_NOTIFY_ALL_PIPE_CLEARED 0x15
  101. /* Generic responses */
  102. #define NFC_HCI_ANY_OK 0x00
  103. #define NFC_HCI_ANY_E_NOT_CONNECTED 0x01
  104. #define NFC_HCI_ANY_E_CMD_PAR_UNKNOWN 0x02
  105. #define NFC_HCI_ANY_E_NOK 0x03
  106. #define NFC_HCI_ANY_E_PIPES_FULL 0x04
  107. #define NFC_HCI_ANY_E_REG_PAR_UNKNOWN 0x05
  108. #define NFC_HCI_ANY_E_PIPE_NOT_OPENED 0x06
  109. #define NFC_HCI_ANY_E_CMD_NOT_SUPPORTED 0x07
  110. #define NFC_HCI_ANY_E_INHIBITED 0x08
  111. #define NFC_HCI_ANY_E_TIMEOUT 0x09
  112. #define NFC_HCI_ANY_E_REG_ACCESS_DENIED 0x0a
  113. #define NFC_HCI_ANY_E_PIPE_ACCESS_DENIED 0x0b
  114. #endif /* __LOCAL_HCI_H */