1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2012 Intel Corporation. All rights reserved.
6 #define pr_fmt(fmt) "hci: %s: " fmt, __func__
8 #include <linux/init.h>
9 #include <linux/kernel.h>
10 #include <linux/sched.h>
11 #include <linux/module.h>
13 #include <net/nfc/hci.h>
19 static int nfc_hci_execute_cmd_async(struct nfc_hci_dev
*hdev
, u8 pipe
, u8 cmd
,
20 const u8
*param
, size_t param_len
,
21 data_exchange_cb_t cb
, void *cb_context
)
23 pr_debug("exec cmd async through pipe=%d, cmd=%d, plen=%zd\n", pipe
,
26 /* TODO: Define hci cmd execution delay. Should it be the same
29 return nfc_hci_hcp_message_tx(hdev
, pipe
, NFC_HCI_HCP_COMMAND
, cmd
,
30 param
, param_len
, cb
, cb_context
, MAX_FWI
);
34 * HCI command execution completion callback.
35 * err 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
39 static void nfc_hci_execute_cb(void *context
, struct sk_buff
*skb
, int err
)
41 struct hcp_exec_waiter
*hcp_ew
= (struct hcp_exec_waiter
*)context
;
43 pr_debug("HCI Cmd completed with result=%d\n", err
);
45 hcp_ew
->exec_result
= err
;
46 if (hcp_ew
->exec_result
== 0)
47 hcp_ew
->result_skb
= skb
;
50 hcp_ew
->exec_complete
= true;
55 static int nfc_hci_execute_cmd(struct nfc_hci_dev
*hdev
, u8 pipe
, u8 cmd
,
56 const u8
*param
, size_t param_len
,
59 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(ew_wq
);
60 struct hcp_exec_waiter hcp_ew
;
62 hcp_ew
.exec_complete
= false;
63 hcp_ew
.result_skb
= NULL
;
65 pr_debug("exec cmd sync through pipe=%d, cmd=%d, plen=%zd\n", pipe
,
68 /* TODO: Define hci cmd execution delay. Should it be the same
71 hcp_ew
.exec_result
= nfc_hci_hcp_message_tx(hdev
, pipe
,
72 NFC_HCI_HCP_COMMAND
, cmd
,
74 nfc_hci_execute_cb
, &hcp_ew
,
76 if (hcp_ew
.exec_result
< 0)
77 return hcp_ew
.exec_result
;
79 wait_event(ew_wq
, hcp_ew
.exec_complete
== true);
81 if (hcp_ew
.exec_result
== 0) {
83 *skb
= hcp_ew
.result_skb
;
85 kfree_skb(hcp_ew
.result_skb
);
88 return hcp_ew
.exec_result
;
91 int nfc_hci_send_event(struct nfc_hci_dev
*hdev
, u8 gate
, u8 event
,
92 const u8
*param
, size_t param_len
)
96 pr_debug("%d to gate %d\n", event
, gate
);
98 pipe
= hdev
->gate2pipe
[gate
];
99 if (pipe
== NFC_HCI_INVALID_PIPE
)
100 return -EADDRNOTAVAIL
;
102 return nfc_hci_hcp_message_tx(hdev
, pipe
, NFC_HCI_HCP_EVENT
, event
,
103 param
, param_len
, NULL
, NULL
, 0);
105 EXPORT_SYMBOL(nfc_hci_send_event
);
108 * Execute an hci command sent to gate.
109 * skb will contain response data if success. skb can be NULL if you are not
110 * interested by the response.
112 int nfc_hci_send_cmd(struct nfc_hci_dev
*hdev
, u8 gate
, u8 cmd
,
113 const u8
*param
, size_t param_len
, struct sk_buff
**skb
)
119 pipe
= hdev
->gate2pipe
[gate
];
120 if (pipe
== NFC_HCI_INVALID_PIPE
)
121 return -EADDRNOTAVAIL
;
123 return nfc_hci_execute_cmd(hdev
, pipe
, cmd
, param
, param_len
, skb
);
125 EXPORT_SYMBOL(nfc_hci_send_cmd
);
127 int nfc_hci_send_cmd_async(struct nfc_hci_dev
*hdev
, u8 gate
, u8 cmd
,
128 const u8
*param
, size_t param_len
,
129 data_exchange_cb_t cb
, void *cb_context
)
135 pipe
= hdev
->gate2pipe
[gate
];
136 if (pipe
== NFC_HCI_INVALID_PIPE
)
137 return -EADDRNOTAVAIL
;
139 return nfc_hci_execute_cmd_async(hdev
, pipe
, cmd
, param
, param_len
,
142 EXPORT_SYMBOL(nfc_hci_send_cmd_async
);
144 int nfc_hci_set_param(struct nfc_hci_dev
*hdev
, u8 gate
, u8 idx
,
145 const u8
*param
, size_t param_len
)
150 /* TODO ELa: reg idx must be inserted before param, but we don't want
151 * to ask the caller to do it to keep a simpler API.
152 * For now, just create a new temporary param buffer. This is far from
153 * optimal though, and the plan is to modify APIs to pass idx down to
154 * nfc_hci_hcp_message_tx where the frame is actually built, thereby
155 * eliminating the need for the temp allocation-copy here.
158 pr_debug("idx=%d to gate %d\n", idx
, gate
);
160 tmp
= kmalloc(1 + param_len
, GFP_KERNEL
);
165 memcpy(tmp
+ 1, param
, param_len
);
167 r
= nfc_hci_send_cmd(hdev
, gate
, NFC_HCI_ANY_SET_PARAMETER
,
168 tmp
, param_len
+ 1, NULL
);
174 EXPORT_SYMBOL(nfc_hci_set_param
);
176 int nfc_hci_get_param(struct nfc_hci_dev
*hdev
, u8 gate
, u8 idx
,
177 struct sk_buff
**skb
)
179 pr_debug("gate=%d regidx=%d\n", gate
, idx
);
181 return nfc_hci_send_cmd(hdev
, gate
, NFC_HCI_ANY_GET_PARAMETER
,
184 EXPORT_SYMBOL(nfc_hci_get_param
);
186 static int nfc_hci_open_pipe(struct nfc_hci_dev
*hdev
, u8 pipe
)
191 pr_debug("pipe=%d\n", pipe
);
193 r
= nfc_hci_execute_cmd(hdev
, pipe
, NFC_HCI_ANY_OPEN_PIPE
,
196 /* dest host other than host controller will send
197 * number of pipes already open on this gate before
198 * execution. The number can be found in skb->data[0]
206 static int nfc_hci_close_pipe(struct nfc_hci_dev
*hdev
, u8 pipe
)
210 return nfc_hci_execute_cmd(hdev
, pipe
, NFC_HCI_ANY_CLOSE_PIPE
,
214 static u8
nfc_hci_create_pipe(struct nfc_hci_dev
*hdev
, u8 dest_host
,
215 u8 dest_gate
, int *result
)
218 struct hci_create_pipe_params params
;
219 struct hci_create_pipe_resp
*resp
;
222 pr_debug("gate=%d\n", dest_gate
);
224 params
.src_gate
= NFC_HCI_ADMIN_GATE
;
225 params
.dest_host
= dest_host
;
226 params
.dest_gate
= dest_gate
;
228 *result
= nfc_hci_execute_cmd(hdev
, NFC_HCI_ADMIN_PIPE
,
229 NFC_HCI_ADM_CREATE_PIPE
,
230 (u8
*) ¶ms
, sizeof(params
), &skb
);
232 return NFC_HCI_INVALID_PIPE
;
234 resp
= (struct hci_create_pipe_resp
*)skb
->data
;
238 pr_debug("pipe created=%d\n", pipe
);
243 static int nfc_hci_delete_pipe(struct nfc_hci_dev
*hdev
, u8 pipe
)
247 return nfc_hci_execute_cmd(hdev
, NFC_HCI_ADMIN_PIPE
,
248 NFC_HCI_ADM_DELETE_PIPE
, &pipe
, 1, NULL
);
251 static int nfc_hci_clear_all_pipes(struct nfc_hci_dev
*hdev
)
254 size_t param_len
= 2;
256 /* TODO: Find out what the identity reference data is
257 * and fill param with it. HCI spec 6.1.3.5 */
261 if (test_bit(NFC_HCI_QUIRK_SHORT_CLEAR
, &hdev
->quirks
))
264 return nfc_hci_execute_cmd(hdev
, NFC_HCI_ADMIN_PIPE
,
265 NFC_HCI_ADM_CLEAR_ALL_PIPE
, param
, param_len
,
269 int nfc_hci_disconnect_gate(struct nfc_hci_dev
*hdev
, u8 gate
)
272 u8 pipe
= hdev
->gate2pipe
[gate
];
276 if (pipe
== NFC_HCI_INVALID_PIPE
)
277 return -EADDRNOTAVAIL
;
279 r
= nfc_hci_close_pipe(hdev
, pipe
);
283 if (pipe
!= NFC_HCI_LINK_MGMT_PIPE
&& pipe
!= NFC_HCI_ADMIN_PIPE
) {
284 r
= nfc_hci_delete_pipe(hdev
, pipe
);
289 hdev
->gate2pipe
[gate
] = NFC_HCI_INVALID_PIPE
;
293 EXPORT_SYMBOL(nfc_hci_disconnect_gate
);
295 int nfc_hci_disconnect_all_gates(struct nfc_hci_dev
*hdev
)
301 r
= nfc_hci_clear_all_pipes(hdev
);
305 nfc_hci_reset_pipes(hdev
);
309 EXPORT_SYMBOL(nfc_hci_disconnect_all_gates
);
311 int nfc_hci_connect_gate(struct nfc_hci_dev
*hdev
, u8 dest_host
, u8 dest_gate
,
314 bool pipe_created
= false;
319 if (pipe
== NFC_HCI_DO_NOT_CREATE_PIPE
)
322 if (hdev
->gate2pipe
[dest_gate
] != NFC_HCI_INVALID_PIPE
)
325 if (pipe
!= NFC_HCI_INVALID_PIPE
)
329 case NFC_HCI_LINK_MGMT_GATE
:
330 pipe
= NFC_HCI_LINK_MGMT_PIPE
;
332 case NFC_HCI_ADMIN_GATE
:
333 pipe
= NFC_HCI_ADMIN_PIPE
;
336 pipe
= nfc_hci_create_pipe(hdev
, dest_host
, dest_gate
, &r
);
337 if (pipe
== NFC_HCI_INVALID_PIPE
)
344 r
= nfc_hci_open_pipe(hdev
, pipe
);
347 if (nfc_hci_delete_pipe(hdev
, pipe
) < 0) {
348 /* TODO: Cannot clean by deleting pipe...
349 * -> inconsistent state */
354 hdev
->pipes
[pipe
].gate
= dest_gate
;
355 hdev
->pipes
[pipe
].dest_host
= dest_host
;
356 hdev
->gate2pipe
[dest_gate
] = pipe
;
360 EXPORT_SYMBOL(nfc_hci_connect_gate
);