command.c 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384
  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, see <http://www.gnu.org/licenses/>.
  16. */
  17. #define pr_fmt(fmt) "hci: %s: " fmt, __func__
  18. #include <linux/init.h>
  19. #include <linux/kernel.h>
  20. #include <linux/sched.h>
  21. #include <linux/module.h>
  22. #include <net/nfc/hci.h>
  23. #include "hci.h"
  24. #define MAX_FWI 4949
  25. static int nfc_hci_execute_cmd_async(struct nfc_hci_dev *hdev, u8 pipe, u8 cmd,
  26. const u8 *param, size_t param_len,
  27. data_exchange_cb_t cb, void *cb_context)
  28. {
  29. pr_debug("exec cmd async through pipe=%d, cmd=%d, plen=%zd\n", pipe,
  30. cmd, param_len);
  31. /* TODO: Define hci cmd execution delay. Should it be the same
  32. * for all commands?
  33. */
  34. return nfc_hci_hcp_message_tx(hdev, pipe, NFC_HCI_HCP_COMMAND, cmd,
  35. param, param_len, cb, cb_context, MAX_FWI);
  36. }
  37. /*
  38. * HCI command execution completion callback.
  39. * err will be a standard linux error (may be converted from HCI response)
  40. * skb contains the response data and must be disposed, or may be NULL if
  41. * an error occured
  42. */
  43. static void nfc_hci_execute_cb(void *context, struct sk_buff *skb, int err)
  44. {
  45. struct hcp_exec_waiter *hcp_ew = (struct hcp_exec_waiter *)context;
  46. pr_debug("HCI Cmd completed with result=%d\n", err);
  47. hcp_ew->exec_result = err;
  48. if (hcp_ew->exec_result == 0)
  49. hcp_ew->result_skb = skb;
  50. else
  51. kfree_skb(skb);
  52. hcp_ew->exec_complete = true;
  53. wake_up(hcp_ew->wq);
  54. }
  55. static int nfc_hci_execute_cmd(struct nfc_hci_dev *hdev, u8 pipe, u8 cmd,
  56. const u8 *param, size_t param_len,
  57. struct sk_buff **skb)
  58. {
  59. DECLARE_WAIT_QUEUE_HEAD_ONSTACK(ew_wq);
  60. struct hcp_exec_waiter hcp_ew;
  61. hcp_ew.wq = &ew_wq;
  62. hcp_ew.exec_complete = false;
  63. hcp_ew.result_skb = NULL;
  64. pr_debug("exec cmd sync through pipe=%d, cmd=%d, plen=%zd\n", pipe,
  65. cmd, param_len);
  66. /* TODO: Define hci cmd execution delay. Should it be the same
  67. * for all commands?
  68. */
  69. hcp_ew.exec_result = nfc_hci_hcp_message_tx(hdev, pipe,
  70. NFC_HCI_HCP_COMMAND, cmd,
  71. param, param_len,
  72. nfc_hci_execute_cb, &hcp_ew,
  73. MAX_FWI);
  74. if (hcp_ew.exec_result < 0)
  75. return hcp_ew.exec_result;
  76. wait_event(ew_wq, hcp_ew.exec_complete == true);
  77. if (hcp_ew.exec_result == 0) {
  78. if (skb)
  79. *skb = hcp_ew.result_skb;
  80. else
  81. kfree_skb(hcp_ew.result_skb);
  82. }
  83. return hcp_ew.exec_result;
  84. }
  85. int nfc_hci_send_event(struct nfc_hci_dev *hdev, u8 gate, u8 event,
  86. const u8 *param, size_t param_len)
  87. {
  88. u8 pipe;
  89. pr_debug("%d to gate %d\n", event, gate);
  90. pipe = hdev->gate2pipe[gate];
  91. if (pipe == NFC_HCI_INVALID_PIPE)
  92. return -EADDRNOTAVAIL;
  93. return nfc_hci_hcp_message_tx(hdev, pipe, NFC_HCI_HCP_EVENT, event,
  94. param, param_len, NULL, NULL, 0);
  95. }
  96. EXPORT_SYMBOL(nfc_hci_send_event);
  97. int nfc_hci_send_response(struct nfc_hci_dev *hdev, u8 gate, u8 response,
  98. const u8 *param, size_t param_len)
  99. {
  100. u8 pipe;
  101. pr_debug("\n");
  102. pipe = hdev->gate2pipe[gate];
  103. if (pipe == NFC_HCI_INVALID_PIPE)
  104. return -EADDRNOTAVAIL;
  105. return nfc_hci_hcp_message_tx(hdev, pipe, NFC_HCI_HCP_RESPONSE,
  106. response, param, param_len, NULL, NULL,
  107. 0);
  108. }
  109. EXPORT_SYMBOL(nfc_hci_send_response);
  110. /*
  111. * Execute an hci command sent to gate.
  112. * skb will contain response data if success. skb can be NULL if you are not
  113. * interested by the response.
  114. */
  115. int nfc_hci_send_cmd(struct nfc_hci_dev *hdev, u8 gate, u8 cmd,
  116. const u8 *param, size_t param_len, struct sk_buff **skb)
  117. {
  118. u8 pipe;
  119. pr_debug("\n");
  120. pipe = hdev->gate2pipe[gate];
  121. if (pipe == NFC_HCI_INVALID_PIPE)
  122. return -EADDRNOTAVAIL;
  123. return nfc_hci_execute_cmd(hdev, pipe, cmd, param, param_len, skb);
  124. }
  125. EXPORT_SYMBOL(nfc_hci_send_cmd);
  126. int nfc_hci_send_cmd_async(struct nfc_hci_dev *hdev, u8 gate, u8 cmd,
  127. const u8 *param, size_t param_len,
  128. data_exchange_cb_t cb, void *cb_context)
  129. {
  130. u8 pipe;
  131. pr_debug("\n");
  132. pipe = hdev->gate2pipe[gate];
  133. if (pipe == NFC_HCI_INVALID_PIPE)
  134. return -EADDRNOTAVAIL;
  135. return nfc_hci_execute_cmd_async(hdev, pipe, cmd, param, param_len,
  136. cb, cb_context);
  137. }
  138. EXPORT_SYMBOL(nfc_hci_send_cmd_async);
  139. int nfc_hci_set_param(struct nfc_hci_dev *hdev, u8 gate, u8 idx,
  140. const u8 *param, size_t param_len)
  141. {
  142. int r;
  143. u8 *tmp;
  144. /* TODO ELa: reg idx must be inserted before param, but we don't want
  145. * to ask the caller to do it to keep a simpler API.
  146. * For now, just create a new temporary param buffer. This is far from
  147. * optimal though, and the plan is to modify APIs to pass idx down to
  148. * nfc_hci_hcp_message_tx where the frame is actually built, thereby
  149. * eliminating the need for the temp allocation-copy here.
  150. */
  151. pr_debug("idx=%d to gate %d\n", idx, gate);
  152. tmp = kmalloc(1 + param_len, GFP_KERNEL);
  153. if (tmp == NULL)
  154. return -ENOMEM;
  155. *tmp = idx;
  156. memcpy(tmp + 1, param, param_len);
  157. r = nfc_hci_send_cmd(hdev, gate, NFC_HCI_ANY_SET_PARAMETER,
  158. tmp, param_len + 1, NULL);
  159. kfree(tmp);
  160. return r;
  161. }
  162. EXPORT_SYMBOL(nfc_hci_set_param);
  163. int nfc_hci_get_param(struct nfc_hci_dev *hdev, u8 gate, u8 idx,
  164. struct sk_buff **skb)
  165. {
  166. pr_debug("gate=%d regidx=%d\n", gate, idx);
  167. return nfc_hci_send_cmd(hdev, gate, NFC_HCI_ANY_GET_PARAMETER,
  168. &idx, 1, skb);
  169. }
  170. EXPORT_SYMBOL(nfc_hci_get_param);
  171. static int nfc_hci_open_pipe(struct nfc_hci_dev *hdev, u8 pipe)
  172. {
  173. struct sk_buff *skb;
  174. int r;
  175. pr_debug("pipe=%d\n", pipe);
  176. r = nfc_hci_execute_cmd(hdev, pipe, NFC_HCI_ANY_OPEN_PIPE,
  177. NULL, 0, &skb);
  178. if (r == 0) {
  179. /* dest host other than host controller will send
  180. * number of pipes already open on this gate before
  181. * execution. The number can be found in skb->data[0]
  182. */
  183. kfree_skb(skb);
  184. }
  185. return r;
  186. }
  187. static int nfc_hci_close_pipe(struct nfc_hci_dev *hdev, u8 pipe)
  188. {
  189. pr_debug("\n");
  190. return nfc_hci_execute_cmd(hdev, pipe, NFC_HCI_ANY_CLOSE_PIPE,
  191. NULL, 0, NULL);
  192. }
  193. static u8 nfc_hci_create_pipe(struct nfc_hci_dev *hdev, u8 dest_host,
  194. u8 dest_gate, int *result)
  195. {
  196. struct sk_buff *skb;
  197. struct hci_create_pipe_params params;
  198. struct hci_create_pipe_resp *resp;
  199. u8 pipe;
  200. pr_debug("gate=%d\n", dest_gate);
  201. params.src_gate = NFC_HCI_ADMIN_GATE;
  202. params.dest_host = dest_host;
  203. params.dest_gate = dest_gate;
  204. *result = nfc_hci_execute_cmd(hdev, NFC_HCI_ADMIN_PIPE,
  205. NFC_HCI_ADM_CREATE_PIPE,
  206. (u8 *) &params, sizeof(params), &skb);
  207. if (*result < 0)
  208. return NFC_HCI_INVALID_PIPE;
  209. resp = (struct hci_create_pipe_resp *)skb->data;
  210. pipe = resp->pipe;
  211. kfree_skb(skb);
  212. pr_debug("pipe created=%d\n", pipe);
  213. return pipe;
  214. }
  215. static int nfc_hci_delete_pipe(struct nfc_hci_dev *hdev, u8 pipe)
  216. {
  217. pr_debug("\n");
  218. return nfc_hci_execute_cmd(hdev, NFC_HCI_ADMIN_PIPE,
  219. NFC_HCI_ADM_DELETE_PIPE, &pipe, 1, NULL);
  220. }
  221. static int nfc_hci_clear_all_pipes(struct nfc_hci_dev *hdev)
  222. {
  223. u8 param[2];
  224. size_t param_len = 2;
  225. /* TODO: Find out what the identity reference data is
  226. * and fill param with it. HCI spec 6.1.3.5 */
  227. pr_debug("\n");
  228. if (test_bit(NFC_HCI_QUIRK_SHORT_CLEAR, &hdev->quirks))
  229. param_len = 0;
  230. return nfc_hci_execute_cmd(hdev, NFC_HCI_ADMIN_PIPE,
  231. NFC_HCI_ADM_CLEAR_ALL_PIPE, param, param_len,
  232. NULL);
  233. }
  234. int nfc_hci_disconnect_gate(struct nfc_hci_dev *hdev, u8 gate)
  235. {
  236. int r;
  237. u8 pipe = hdev->gate2pipe[gate];
  238. pr_debug("\n");
  239. if (pipe == NFC_HCI_INVALID_PIPE)
  240. return -EADDRNOTAVAIL;
  241. r = nfc_hci_close_pipe(hdev, pipe);
  242. if (r < 0)
  243. return r;
  244. if (pipe != NFC_HCI_LINK_MGMT_PIPE && pipe != NFC_HCI_ADMIN_PIPE) {
  245. r = nfc_hci_delete_pipe(hdev, pipe);
  246. if (r < 0)
  247. return r;
  248. }
  249. hdev->gate2pipe[gate] = NFC_HCI_INVALID_PIPE;
  250. return 0;
  251. }
  252. EXPORT_SYMBOL(nfc_hci_disconnect_gate);
  253. int nfc_hci_disconnect_all_gates(struct nfc_hci_dev *hdev)
  254. {
  255. int r;
  256. pr_debug("\n");
  257. r = nfc_hci_clear_all_pipes(hdev);
  258. if (r < 0)
  259. return r;
  260. memset(hdev->gate2pipe, NFC_HCI_INVALID_PIPE, sizeof(hdev->gate2pipe));
  261. return 0;
  262. }
  263. EXPORT_SYMBOL(nfc_hci_disconnect_all_gates);
  264. int nfc_hci_connect_gate(struct nfc_hci_dev *hdev, u8 dest_host, u8 dest_gate,
  265. u8 pipe)
  266. {
  267. bool pipe_created = false;
  268. int r;
  269. pr_debug("\n");
  270. if (hdev->gate2pipe[dest_gate] != NFC_HCI_INVALID_PIPE)
  271. return -EADDRINUSE;
  272. if (pipe != NFC_HCI_INVALID_PIPE)
  273. goto open_pipe;
  274. switch (dest_gate) {
  275. case NFC_HCI_LINK_MGMT_GATE:
  276. pipe = NFC_HCI_LINK_MGMT_PIPE;
  277. break;
  278. case NFC_HCI_ADMIN_GATE:
  279. pipe = NFC_HCI_ADMIN_PIPE;
  280. break;
  281. default:
  282. pipe = nfc_hci_create_pipe(hdev, dest_host, dest_gate, &r);
  283. if (pipe == NFC_HCI_INVALID_PIPE)
  284. return r;
  285. pipe_created = true;
  286. break;
  287. }
  288. open_pipe:
  289. r = nfc_hci_open_pipe(hdev, pipe);
  290. if (r < 0) {
  291. if (pipe_created)
  292. if (nfc_hci_delete_pipe(hdev, pipe) < 0) {
  293. /* TODO: Cannot clean by deleting pipe...
  294. * -> inconsistent state */
  295. }
  296. return r;
  297. }
  298. hdev->gate2pipe[dest_gate] = pipe;
  299. return 0;
  300. }
  301. EXPORT_SYMBOL(nfc_hci_connect_gate);