blob: 20bdd71559b16569d8bed368e1eb7842a841705a [file] [log] [blame]
Johan Hedberg7dec65c2012-07-16 16:12:02 +03001/*
2 *
3 * Bluetooth HCI Three-wire UART driver
4 *
5 * Copyright (C) 2012 Intel Corporation
6 *
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
24#include <linux/kernel.h>
25#include <linux/errno.h>
26#include <linux/skbuff.h>
27
28#include <net/bluetooth/bluetooth.h>
29#include <net/bluetooth/hci_core.h>
30
31#include "hci_uart.h"
32
Johan Hedbergc0a1b732012-07-16 16:12:06 +030033#define HCI_3WIRE_ACK_PKT 0
34#define HCI_3WIRE_LINK_PKT 15
35
Johan Hedbergafdc9442012-07-16 16:12:18 +030036/* Sliding window size */
37#define H5_TX_WIN_MAX 4
Johan Hedberg3f27e952012-07-16 16:12:04 +030038
39#define H5_ACK_TIMEOUT msecs_to_jiffies(250)
Johan Hedberg40f10222012-07-16 16:12:09 +030040#define H5_SYNC_TIMEOUT msecs_to_jiffies(100)
Johan Hedberg3f27e952012-07-16 16:12:04 +030041
Johan Hedbergbc1f35b2012-07-16 16:12:05 +030042/*
43 * Maximum Three-wire packet:
44 * 4 byte header + max value for 12-bit length + 2 bytes for CRC
45 */
46#define H5_MAX_LEN (4 + 0xfff + 2)
47
Johan Hedberg01977c02012-07-16 16:12:07 +030048/* Convenience macros for reading Three-wire header values */
49#define H5_HDR_SEQ(hdr) ((hdr)[0] & 0x07)
50#define H5_HDR_ACK(hdr) (((hdr)[0] >> 3) & 0x07)
51#define H5_HDR_CRC(hdr) (((hdr)[0] >> 6) & 0x01)
52#define H5_HDR_RELIABLE(hdr) (((hdr)[0] >> 7) & 0x01)
53#define H5_HDR_PKT_TYPE(hdr) ((hdr)[1] & 0x0f)
54#define H5_HDR_LEN(hdr) ((((hdr)[1] >> 4) & 0xff) + ((hdr)[2] << 4))
55
Johan Hedbergbc1f35b2012-07-16 16:12:05 +030056#define SLIP_DELIMITER 0xc0
57#define SLIP_ESC 0xdb
58#define SLIP_ESC_DELIM 0xdc
59#define SLIP_ESC_ESC 0xdd
60
Johan Hedberge0482102012-07-16 16:12:19 +030061/* H5 state flags */
62enum {
63 H5_RX_ESC, /* SLIP escape mode */
64 H5_TX_ACK_REQ, /* Pending ack to send */
65};
66
Johan Hedberg7d664fb2012-07-16 16:12:03 +030067struct h5 {
Johan Hedbergbc1f35b2012-07-16 16:12:05 +030068 struct sk_buff_head unack; /* Unack'ed packets queue */
69 struct sk_buff_head rel; /* Reliable packets queue */
70 struct sk_buff_head unrel; /* Unreliable packets queue */
Johan Hedberg7d664fb2012-07-16 16:12:03 +030071
Johan Hedberge0482102012-07-16 16:12:19 +030072 unsigned long flags;
73
Johan Hedbergbc1f35b2012-07-16 16:12:05 +030074 struct sk_buff *rx_skb; /* Receive buffer */
75 size_t rx_pending; /* Expecting more bytes */
Johan Hedberg43eb12d2012-07-16 16:12:08 +030076 u8 rx_ack; /* Last ack number received */
Johan Hedberg7d664fb2012-07-16 16:12:03 +030077
Johan Hedbergbc1f35b2012-07-16 16:12:05 +030078 int (*rx_func) (struct hci_uart *hu, u8 c);
Johan Hedberg3f27e952012-07-16 16:12:04 +030079
Johan Hedbergbc1f35b2012-07-16 16:12:05 +030080 struct timer_list timer; /* Retransmission timer */
Johan Hedberg7d664fb2012-07-16 16:12:03 +030081
Johan Hedberg43eb12d2012-07-16 16:12:08 +030082 u8 tx_seq; /* Next seq number to send */
Johan Hedberg40f10222012-07-16 16:12:09 +030083 u8 tx_ack; /* Next ack number to send */
Johan Hedbergafdc9442012-07-16 16:12:18 +030084 u8 tx_win; /* Sliding window size */
Johan Hedberg10122d02012-07-16 16:12:14 +030085
Johan Hedbergf674a052012-07-16 16:12:15 +030086 enum {
87 H5_UNINITIALIZED,
88 H5_INITIALIZED,
89 H5_ACTIVE,
90 } state;
91
Johan Hedberg95c5c222012-07-16 16:12:16 +030092 enum {
93 H5_AWAKE,
94 H5_SLEEPING,
95 H5_WAKING_UP,
96 } sleep;
Johan Hedberg7d664fb2012-07-16 16:12:03 +030097};
98
Johan Hedbergbc1f35b2012-07-16 16:12:05 +030099static void h5_reset_rx(struct h5 *h5);
100
Johan Hedberg40f10222012-07-16 16:12:09 +0300101static void h5_link_control(struct hci_uart *hu, const void *data, size_t len)
102{
103 struct h5 *h5 = hu->priv;
104 struct sk_buff *nskb;
105
106 nskb = alloc_skb(3, GFP_ATOMIC);
107 if (!nskb)
108 return;
109
110 bt_cb(nskb)->pkt_type = HCI_3WIRE_LINK_PKT;
111
112 memcpy(skb_put(nskb, len), data, len);
113
114 skb_queue_tail(&h5->unrel, nskb);
115}
116
Johan Hedbergafdc9442012-07-16 16:12:18 +0300117static u8 h5_cfg_field(struct h5 *h5)
118{
119 u8 field = 0;
120
121 /* Sliding window size (first 3 bits) */
122 field |= (h5->tx_win & 7);
123
124 return field;
125}
126
Johan Hedbergf674a052012-07-16 16:12:15 +0300127static void h5_timed_event(unsigned long arg)
128{
129 const unsigned char sync_req[] = { 0x01, 0x7e };
Johan Hedbergafdc9442012-07-16 16:12:18 +0300130 unsigned char conf_req[] = { 0x03, 0xfc, 0x01 };
Johan Hedbergf674a052012-07-16 16:12:15 +0300131 struct hci_uart *hu = (struct hci_uart *) arg;
132 struct h5 *h5 = hu->priv;
133 struct sk_buff *skb;
134 unsigned long flags;
135
Johan Hedberg95c5c222012-07-16 16:12:16 +0300136 BT_DBG("%s", hu->hdev->name);
137
Johan Hedbergf674a052012-07-16 16:12:15 +0300138 if (h5->state == H5_UNINITIALIZED)
139 h5_link_control(hu, sync_req, sizeof(sync_req));
140
Johan Hedbergafdc9442012-07-16 16:12:18 +0300141 if (h5->state == H5_INITIALIZED) {
142 conf_req[2] = h5_cfg_field(h5);
Johan Hedbergf674a052012-07-16 16:12:15 +0300143 h5_link_control(hu, conf_req, sizeof(conf_req));
Johan Hedbergafdc9442012-07-16 16:12:18 +0300144 }
Johan Hedbergf674a052012-07-16 16:12:15 +0300145
146 if (h5->state != H5_ACTIVE) {
147 mod_timer(&h5->timer, jiffies + H5_SYNC_TIMEOUT);
148 goto wakeup;
149 }
150
Johan Hedberg95c5c222012-07-16 16:12:16 +0300151 if (h5->sleep != H5_AWAKE) {
152 h5->sleep = H5_SLEEPING;
153 goto wakeup;
154 }
155
Johan Hedbergf674a052012-07-16 16:12:15 +0300156 BT_DBG("hu %p retransmitting %u pkts", hu, h5->unack.qlen);
157
158 spin_lock_irqsave_nested(&h5->unack.lock, flags, SINGLE_DEPTH_NESTING);
159
160 while ((skb = __skb_dequeue_tail(&h5->unack)) != NULL) {
161 h5->tx_seq = (h5->tx_seq - 1) & 0x07;
162 skb_queue_head(&h5->rel, skb);
163 }
164
165 spin_unlock_irqrestore(&h5->unack.lock, flags);
166
167wakeup:
168 hci_uart_tx_wakeup(hu);
169}
170
Loic Poulainb509c022014-10-08 16:54:28 +0200171static void h5_peer_reset(struct hci_uart *hu)
172{
173 struct h5 *h5 = hu->priv;
174 struct sk_buff *skb;
175 const unsigned char hard_err[] = { 0x10, 0x01, 0x00 };
176
177 BT_ERR("Peer device has reset");
178
179 h5->state = H5_UNINITIALIZED;
180
181 del_timer(&h5->timer);
182
183 skb_queue_purge(&h5->rel);
184 skb_queue_purge(&h5->unrel);
185 skb_queue_purge(&h5->unack);
186
187 h5->tx_seq = 0;
188 h5->tx_ack = 0;
189
190 skb = bt_skb_alloc(3, GFP_ATOMIC);
191 if (!skb)
192 return;
193
194 bt_cb(skb)->pkt_type = HCI_EVENT_PKT;
195 memcpy(skb_put(skb, 3), hard_err, 3);
196
197 /* Send Hardware Error to upper stack */
198 hci_recv_frame(hu->hdev, skb);
199}
200
Johan Hedberg7dec65c2012-07-16 16:12:02 +0300201static int h5_open(struct hci_uart *hu)
202{
Johan Hedberg7d664fb2012-07-16 16:12:03 +0300203 struct h5 *h5;
Johan Hedberg40f10222012-07-16 16:12:09 +0300204 const unsigned char sync[] = { 0x01, 0x7e };
Johan Hedberg7d664fb2012-07-16 16:12:03 +0300205
206 BT_DBG("hu %p", hu);
207
208 h5 = kzalloc(sizeof(*h5), GFP_KERNEL);
209 if (!h5)
210 return -ENOMEM;
211
212 hu->priv = h5;
213
214 skb_queue_head_init(&h5->unack);
215 skb_queue_head_init(&h5->rel);
216 skb_queue_head_init(&h5->unrel);
217
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300218 h5_reset_rx(h5);
219
Johan Hedberg3f27e952012-07-16 16:12:04 +0300220 init_timer(&h5->timer);
221 h5->timer.function = h5_timed_event;
222 h5->timer.data = (unsigned long) hu;
223
Johan Hedbergafdc9442012-07-16 16:12:18 +0300224 h5->tx_win = H5_TX_WIN_MAX;
225
Johan Hedbergcd1b4422012-07-16 16:12:12 +0300226 set_bit(HCI_UART_INIT_PENDING, &hu->hdev_flags);
227
Johan Hedberg40f10222012-07-16 16:12:09 +0300228 /* Send initial sync request */
229 h5_link_control(hu, sync, sizeof(sync));
230 mod_timer(&h5->timer, jiffies + H5_SYNC_TIMEOUT);
231
Johan Hedberg7d664fb2012-07-16 16:12:03 +0300232 return 0;
Johan Hedberg7dec65c2012-07-16 16:12:02 +0300233}
234
235static int h5_close(struct hci_uart *hu)
236{
Johan Hedberg7d664fb2012-07-16 16:12:03 +0300237 struct h5 *h5 = hu->priv;
238
Michael Knudsenc327cdd2014-02-18 09:48:08 +0100239 del_timer_sync(&h5->timer);
240
Johan Hedberg7d664fb2012-07-16 16:12:03 +0300241 skb_queue_purge(&h5->unack);
242 skb_queue_purge(&h5->rel);
243 skb_queue_purge(&h5->unrel);
244
245 kfree(h5);
246
247 return 0;
Johan Hedberg7dec65c2012-07-16 16:12:02 +0300248}
249
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300250static void h5_pkt_cull(struct h5 *h5)
251{
252 struct sk_buff *skb, *tmp;
253 unsigned long flags;
254 int i, to_remove;
255 u8 seq;
256
257 spin_lock_irqsave(&h5->unack.lock, flags);
258
259 to_remove = skb_queue_len(&h5->unack);
Johan Hedberg40f10222012-07-16 16:12:09 +0300260 if (to_remove == 0)
261 goto unlock;
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300262
263 seq = h5->tx_seq;
264
265 while (to_remove > 0) {
266 if (h5->rx_ack == seq)
267 break;
268
269 to_remove--;
Loic Poulain4807b512014-08-08 19:07:16 +0200270 seq = (seq - 1) & 0x07;
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300271 }
272
273 if (seq != h5->rx_ack)
274 BT_ERR("Controller acked invalid packet");
275
276 i = 0;
277 skb_queue_walk_safe(&h5->unack, skb, tmp) {
278 if (i++ >= to_remove)
279 break;
280
281 __skb_unlink(skb, &h5->unack);
282 kfree_skb(skb);
283 }
284
285 if (skb_queue_empty(&h5->unack))
286 del_timer(&h5->timer);
287
Johan Hedberg40f10222012-07-16 16:12:09 +0300288unlock:
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300289 spin_unlock_irqrestore(&h5->unack.lock, flags);
290}
291
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300292static void h5_handle_internal_rx(struct hci_uart *hu)
293{
Johan Hedberg40f10222012-07-16 16:12:09 +0300294 struct h5 *h5 = hu->priv;
295 const unsigned char sync_req[] = { 0x01, 0x7e };
296 const unsigned char sync_rsp[] = { 0x02, 0x7d };
Johan Hedbergafdc9442012-07-16 16:12:18 +0300297 unsigned char conf_req[] = { 0x03, 0xfc, 0x01 };
298 const unsigned char conf_rsp[] = { 0x04, 0x7b };
Johan Hedberg10122d02012-07-16 16:12:14 +0300299 const unsigned char wakeup_req[] = { 0x05, 0xfa };
300 const unsigned char woken_req[] = { 0x06, 0xf9 };
301 const unsigned char sleep_req[] = { 0x07, 0x78 };
Johan Hedberg40f10222012-07-16 16:12:09 +0300302 const unsigned char *hdr = h5->rx_skb->data;
303 const unsigned char *data = &h5->rx_skb->data[4];
304
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300305 BT_DBG("%s", hu->hdev->name);
Johan Hedberg40f10222012-07-16 16:12:09 +0300306
307 if (H5_HDR_PKT_TYPE(hdr) != HCI_3WIRE_LINK_PKT)
308 return;
309
310 if (H5_HDR_LEN(hdr) < 2)
311 return;
312
Johan Hedbergafdc9442012-07-16 16:12:18 +0300313 conf_req[2] = h5_cfg_field(h5);
314
Johan Hedberg40f10222012-07-16 16:12:09 +0300315 if (memcmp(data, sync_req, 2) == 0) {
Loic Poulainb509c022014-10-08 16:54:28 +0200316 if (h5->state == H5_ACTIVE)
317 h5_peer_reset(hu);
Johan Hedberg40f10222012-07-16 16:12:09 +0300318 h5_link_control(hu, sync_rsp, 2);
319 } else if (memcmp(data, sync_rsp, 2) == 0) {
Loic Poulainb509c022014-10-08 16:54:28 +0200320 if (h5->state == H5_ACTIVE)
321 h5_peer_reset(hu);
Johan Hedbergf674a052012-07-16 16:12:15 +0300322 h5->state = H5_INITIALIZED;
Johan Hedberg40f10222012-07-16 16:12:09 +0300323 h5_link_control(hu, conf_req, 3);
324 } else if (memcmp(data, conf_req, 2) == 0) {
325 h5_link_control(hu, conf_rsp, 2);
326 h5_link_control(hu, conf_req, 3);
327 } else if (memcmp(data, conf_rsp, 2) == 0) {
Johan Hedbergafdc9442012-07-16 16:12:18 +0300328 if (H5_HDR_LEN(hdr) > 2)
329 h5->tx_win = (data[2] & 7);
330 BT_DBG("Three-wire init complete. tx_win %u", h5->tx_win);
Johan Hedbergf674a052012-07-16 16:12:15 +0300331 h5->state = H5_ACTIVE;
Johan Hedbergcd1b4422012-07-16 16:12:12 +0300332 hci_uart_init_ready(hu);
Johan Hedberg40f10222012-07-16 16:12:09 +0300333 return;
Johan Hedberg10122d02012-07-16 16:12:14 +0300334 } else if (memcmp(data, sleep_req, 2) == 0) {
335 BT_DBG("Peer went to sleep");
Johan Hedberg95c5c222012-07-16 16:12:16 +0300336 h5->sleep = H5_SLEEPING;
337 return;
Johan Hedberg10122d02012-07-16 16:12:14 +0300338 } else if (memcmp(data, woken_req, 2) == 0) {
339 BT_DBG("Peer woke up");
Johan Hedberg95c5c222012-07-16 16:12:16 +0300340 h5->sleep = H5_AWAKE;
341 } else if (memcmp(data, wakeup_req, 2) == 0) {
342 BT_DBG("Peer requested wakeup");
343 h5_link_control(hu, woken_req, 2);
344 h5->sleep = H5_AWAKE;
Johan Hedberg40f10222012-07-16 16:12:09 +0300345 } else {
346 BT_DBG("Link Control: 0x%02hhx 0x%02hhx", data[0], data[1]);
347 return;
348 }
349
350 hci_uart_tx_wakeup(hu);
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300351}
352
353static void h5_complete_rx_pkt(struct hci_uart *hu)
354{
355 struct h5 *h5 = hu->priv;
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300356 const unsigned char *hdr = h5->rx_skb->data;
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300357
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300358 if (H5_HDR_RELIABLE(hdr)) {
Johan Hedberg40f10222012-07-16 16:12:09 +0300359 h5->tx_ack = (h5->tx_ack + 1) % 8;
Johan Hedberge0482102012-07-16 16:12:19 +0300360 set_bit(H5_TX_ACK_REQ, &h5->flags);
Johan Hedberg40f10222012-07-16 16:12:09 +0300361 hci_uart_tx_wakeup(hu);
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300362 }
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300363
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300364 h5->rx_ack = H5_HDR_ACK(hdr);
365
366 h5_pkt_cull(h5);
367
368 switch (H5_HDR_PKT_TYPE(hdr)) {
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300369 case HCI_EVENT_PKT:
370 case HCI_ACLDATA_PKT:
371 case HCI_SCODATA_PKT:
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300372 bt_cb(h5->rx_skb)->pkt_type = H5_HDR_PKT_TYPE(hdr);
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300373
374 /* Remove Three-wire header */
375 skb_pull(h5->rx_skb, 4);
376
Marcel Holtmanne1a26172013-10-10 16:52:43 -0700377 hci_recv_frame(hu->hdev, h5->rx_skb);
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300378 h5->rx_skb = NULL;
379
380 break;
381
382 default:
383 h5_handle_internal_rx(hu);
384 break;
385 }
386
387 h5_reset_rx(h5);
388}
389
390static int h5_rx_crc(struct hci_uart *hu, unsigned char c)
391{
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300392 h5_complete_rx_pkt(hu);
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300393
394 return 0;
395}
396
397static int h5_rx_payload(struct hci_uart *hu, unsigned char c)
398{
399 struct h5 *h5 = hu->priv;
400 const unsigned char *hdr = h5->rx_skb->data;
401
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300402 if (H5_HDR_CRC(hdr)) {
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300403 h5->rx_func = h5_rx_crc;
404 h5->rx_pending = 2;
405 } else {
406 h5_complete_rx_pkt(hu);
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300407 }
408
409 return 0;
410}
411
412static int h5_rx_3wire_hdr(struct hci_uart *hu, unsigned char c)
413{
414 struct h5 *h5 = hu->priv;
415 const unsigned char *hdr = h5->rx_skb->data;
416
Johan Hedberg40f10222012-07-16 16:12:09 +0300417 BT_DBG("%s rx: seq %u ack %u crc %u rel %u type %u len %u",
418 hu->hdev->name, H5_HDR_SEQ(hdr), H5_HDR_ACK(hdr),
419 H5_HDR_CRC(hdr), H5_HDR_RELIABLE(hdr), H5_HDR_PKT_TYPE(hdr),
420 H5_HDR_LEN(hdr));
421
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300422 if (((hdr[0] + hdr[1] + hdr[2] + hdr[3]) & 0xff) != 0xff) {
423 BT_ERR("Invalid header checksum");
424 h5_reset_rx(h5);
425 return 0;
426 }
427
Johan Hedberg40f10222012-07-16 16:12:09 +0300428 if (H5_HDR_RELIABLE(hdr) && H5_HDR_SEQ(hdr) != h5->tx_ack) {
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300429 BT_ERR("Out-of-order packet arrived (%u != %u)",
Johan Hedberg40f10222012-07-16 16:12:09 +0300430 H5_HDR_SEQ(hdr), h5->tx_ack);
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300431 h5_reset_rx(h5);
432 return 0;
433 }
434
Johan Hedbergf674a052012-07-16 16:12:15 +0300435 if (h5->state != H5_ACTIVE &&
436 H5_HDR_PKT_TYPE(hdr) != HCI_3WIRE_LINK_PKT) {
437 BT_ERR("Non-link packet received in non-active state");
438 h5_reset_rx(h5);
Loic Poulain48439d52014-06-23 17:42:44 +0200439 return 0;
Johan Hedbergf674a052012-07-16 16:12:15 +0300440 }
441
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300442 h5->rx_func = h5_rx_payload;
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300443 h5->rx_pending = H5_HDR_LEN(hdr);
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300444
445 return 0;
446}
447
448static int h5_rx_pkt_start(struct hci_uart *hu, unsigned char c)
449{
450 struct h5 *h5 = hu->priv;
451
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300452 if (c == SLIP_DELIMITER)
453 return 1;
454
455 h5->rx_func = h5_rx_3wire_hdr;
456 h5->rx_pending = 4;
457
458 h5->rx_skb = bt_skb_alloc(H5_MAX_LEN, GFP_ATOMIC);
459 if (!h5->rx_skb) {
460 BT_ERR("Can't allocate mem for new packet");
461 h5_reset_rx(h5);
462 return -ENOMEM;
463 }
464
465 h5->rx_skb->dev = (void *) hu->hdev;
466
467 return 0;
468}
469
470static int h5_rx_delimiter(struct hci_uart *hu, unsigned char c)
471{
472 struct h5 *h5 = hu->priv;
473
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300474 if (c == SLIP_DELIMITER)
475 h5->rx_func = h5_rx_pkt_start;
476
477 return 1;
478}
479
480static void h5_unslip_one_byte(struct h5 *h5, unsigned char c)
481{
482 const u8 delim = SLIP_DELIMITER, esc = SLIP_ESC;
483 const u8 *byte = &c;
484
Johan Hedberge0482102012-07-16 16:12:19 +0300485 if (!test_bit(H5_RX_ESC, &h5->flags) && c == SLIP_ESC) {
486 set_bit(H5_RX_ESC, &h5->flags);
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300487 return;
488 }
489
Johan Hedberge0482102012-07-16 16:12:19 +0300490 if (test_and_clear_bit(H5_RX_ESC, &h5->flags)) {
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300491 switch (c) {
492 case SLIP_ESC_DELIM:
493 byte = &delim;
494 break;
495 case SLIP_ESC_ESC:
496 byte = &esc;
497 break;
498 default:
499 BT_ERR("Invalid esc byte 0x%02hhx", c);
500 h5_reset_rx(h5);
501 return;
502 }
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300503 }
504
505 memcpy(skb_put(h5->rx_skb, 1), byte, 1);
506 h5->rx_pending--;
507
Johan Hedberg255a68e2012-07-16 16:12:13 +0300508 BT_DBG("unsliped 0x%02hhx, rx_pending %zu", *byte, h5->rx_pending);
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300509}
510
511static void h5_reset_rx(struct h5 *h5)
512{
513 if (h5->rx_skb) {
514 kfree_skb(h5->rx_skb);
515 h5->rx_skb = NULL;
516 }
517
518 h5->rx_func = h5_rx_delimiter;
519 h5->rx_pending = 0;
Johan Hedberge0482102012-07-16 16:12:19 +0300520 clear_bit(H5_RX_ESC, &h5->flags);
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300521}
522
Johan Hedberg7dec65c2012-07-16 16:12:02 +0300523static int h5_recv(struct hci_uart *hu, void *data, int count)
524{
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300525 struct h5 *h5 = hu->priv;
526 unsigned char *ptr = data;
527
Johan Hedberg255a68e2012-07-16 16:12:13 +0300528 BT_DBG("%s pending %zu count %d", hu->hdev->name, h5->rx_pending,
529 count);
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300530
531 while (count > 0) {
532 int processed;
533
534 if (h5->rx_pending > 0) {
535 if (*ptr == SLIP_DELIMITER) {
536 BT_ERR("Too short H5 packet");
537 h5_reset_rx(h5);
538 continue;
539 }
540
541 h5_unslip_one_byte(h5, *ptr);
542
543 ptr++; count--;
544 continue;
545 }
546
547 processed = h5->rx_func(hu, *ptr);
548 if (processed < 0)
549 return processed;
550
551 ptr += processed;
552 count -= processed;
553 }
554
555 return 0;
Johan Hedberg7dec65c2012-07-16 16:12:02 +0300556}
557
558static int h5_enqueue(struct hci_uart *hu, struct sk_buff *skb)
559{
Johan Hedberg7d664fb2012-07-16 16:12:03 +0300560 struct h5 *h5 = hu->priv;
561
562 if (skb->len > 0xfff) {
563 BT_ERR("Packet too long (%u bytes)", skb->len);
564 kfree_skb(skb);
565 return 0;
566 }
567
Johan Hedbergf674a052012-07-16 16:12:15 +0300568 if (h5->state != H5_ACTIVE) {
569 BT_ERR("Ignoring HCI data in non-active state");
570 kfree_skb(skb);
571 return 0;
572 }
573
Johan Hedberg7d664fb2012-07-16 16:12:03 +0300574 switch (bt_cb(skb)->pkt_type) {
575 case HCI_ACLDATA_PKT:
576 case HCI_COMMAND_PKT:
577 skb_queue_tail(&h5->rel, skb);
578 break;
579
580 case HCI_SCODATA_PKT:
581 skb_queue_tail(&h5->unrel, skb);
582 break;
583
584 default:
585 BT_ERR("Unknown packet type %u", bt_cb(skb)->pkt_type);
586 kfree_skb(skb);
587 break;
588 }
589
590 return 0;
591}
592
Johan Hedbergc0a1b732012-07-16 16:12:06 +0300593static void h5_slip_delim(struct sk_buff *skb)
Johan Hedberg7d664fb2012-07-16 16:12:03 +0300594{
Johan Hedbergc0a1b732012-07-16 16:12:06 +0300595 const char delim = SLIP_DELIMITER;
596
597 memcpy(skb_put(skb, 1), &delim, 1);
598}
599
600static void h5_slip_one_byte(struct sk_buff *skb, u8 c)
601{
602 const char esc_delim[2] = { SLIP_ESC, SLIP_ESC_DELIM };
603 const char esc_esc[2] = { SLIP_ESC, SLIP_ESC_ESC };
604
605 switch (c) {
606 case SLIP_DELIMITER:
607 memcpy(skb_put(skb, 2), &esc_delim, 2);
608 break;
609 case SLIP_ESC:
610 memcpy(skb_put(skb, 2), &esc_esc, 2);
611 break;
612 default:
613 memcpy(skb_put(skb, 1), &c, 1);
614 }
615}
616
Johan Hedbergc826ed02012-07-16 16:12:17 +0300617static bool valid_packet_type(u8 type)
618{
619 switch (type) {
620 case HCI_ACLDATA_PKT:
621 case HCI_COMMAND_PKT:
622 case HCI_SCODATA_PKT:
623 case HCI_3WIRE_LINK_PKT:
624 case HCI_3WIRE_ACK_PKT:
625 return true;
626 default:
627 return false;
628 }
629}
630
631static struct sk_buff *h5_prepare_pkt(struct hci_uart *hu, u8 pkt_type,
632 const u8 *data, size_t len)
Johan Hedbergc0a1b732012-07-16 16:12:06 +0300633{
Johan Hedberg40f10222012-07-16 16:12:09 +0300634 struct h5 *h5 = hu->priv;
Johan Hedbergc0a1b732012-07-16 16:12:06 +0300635 struct sk_buff *nskb;
636 u8 hdr[4];
637 int i;
638
Johan Hedbergc826ed02012-07-16 16:12:17 +0300639 if (!valid_packet_type(pkt_type)) {
640 BT_ERR("Unknown packet type %u", pkt_type);
641 return NULL;
642 }
643
Johan Hedbergc0a1b732012-07-16 16:12:06 +0300644 /*
645 * Max len of packet: (original len + 4 (H5 hdr) + 2 (crc)) * 2
646 * (because bytes 0xc0 and 0xdb are escaped, worst case is when
647 * the packet is all made of 0xc0 and 0xdb) + 2 (0xc0
648 * delimiters at start and end).
649 */
650 nskb = alloc_skb((len + 6) * 2 + 2, GFP_ATOMIC);
651 if (!nskb)
652 return NULL;
653
654 bt_cb(nskb)->pkt_type = pkt_type;
655
656 h5_slip_delim(nskb);
657
Johan Hedberg40f10222012-07-16 16:12:09 +0300658 hdr[0] = h5->tx_ack << 3;
Johan Hedberge0482102012-07-16 16:12:19 +0300659 clear_bit(H5_TX_ACK_REQ, &h5->flags);
Johan Hedbergc0a1b732012-07-16 16:12:06 +0300660
Johan Hedbergc826ed02012-07-16 16:12:17 +0300661 /* Reliable packet? */
662 if (pkt_type == HCI_ACLDATA_PKT || pkt_type == HCI_COMMAND_PKT) {
Johan Hedbergc0a1b732012-07-16 16:12:06 +0300663 hdr[0] |= 1 << 7;
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300664 hdr[0] |= h5->tx_seq;
665 h5->tx_seq = (h5->tx_seq + 1) % 8;
Johan Hedbergc0a1b732012-07-16 16:12:06 +0300666 }
667
668 hdr[1] = pkt_type | ((len & 0x0f) << 4);
669 hdr[2] = len >> 4;
670 hdr[3] = ~((hdr[0] + hdr[1] + hdr[2]) & 0xff);
671
Johan Hedberg40f10222012-07-16 16:12:09 +0300672 BT_DBG("%s tx: seq %u ack %u crc %u rel %u type %u len %u",
673 hu->hdev->name, H5_HDR_SEQ(hdr), H5_HDR_ACK(hdr),
674 H5_HDR_CRC(hdr), H5_HDR_RELIABLE(hdr), H5_HDR_PKT_TYPE(hdr),
675 H5_HDR_LEN(hdr));
676
Johan Hedbergc0a1b732012-07-16 16:12:06 +0300677 for (i = 0; i < 4; i++)
678 h5_slip_one_byte(nskb, hdr[i]);
679
680 for (i = 0; i < len; i++)
681 h5_slip_one_byte(nskb, data[i]);
682
683 h5_slip_delim(nskb);
684
685 return nskb;
686}
687
Johan Hedberg7dec65c2012-07-16 16:12:02 +0300688static struct sk_buff *h5_dequeue(struct hci_uart *hu)
689{
Johan Hedberg7d664fb2012-07-16 16:12:03 +0300690 struct h5 *h5 = hu->priv;
Johan Hedberg3f27e952012-07-16 16:12:04 +0300691 unsigned long flags;
Johan Hedberg7d664fb2012-07-16 16:12:03 +0300692 struct sk_buff *skb, *nskb;
693
Johan Hedberg95c5c222012-07-16 16:12:16 +0300694 if (h5->sleep != H5_AWAKE) {
695 const unsigned char wakeup_req[] = { 0x05, 0xfa };
696
697 if (h5->sleep == H5_WAKING_UP)
698 return NULL;
699
700 h5->sleep = H5_WAKING_UP;
701 BT_DBG("Sending wakeup request");
702
703 mod_timer(&h5->timer, jiffies + HZ / 100);
704 return h5_prepare_pkt(hu, HCI_3WIRE_LINK_PKT, wakeup_req, 2);
705 }
706
Valentin Iliea08b15e2013-08-12 18:46:00 +0300707 skb = skb_dequeue(&h5->unrel);
708 if (skb != NULL) {
Johan Hedberg40f10222012-07-16 16:12:09 +0300709 nskb = h5_prepare_pkt(hu, bt_cb(skb)->pkt_type,
Johan Hedbergc0a1b732012-07-16 16:12:06 +0300710 skb->data, skb->len);
Johan Hedberg7d664fb2012-07-16 16:12:03 +0300711 if (nskb) {
712 kfree_skb(skb);
713 return nskb;
714 }
715
716 skb_queue_head(&h5->unrel, skb);
717 BT_ERR("Could not dequeue pkt because alloc_skb failed");
718 }
719
Johan Hedberg3f27e952012-07-16 16:12:04 +0300720 spin_lock_irqsave_nested(&h5->unack.lock, flags, SINGLE_DEPTH_NESTING);
721
Johan Hedbergafdc9442012-07-16 16:12:18 +0300722 if (h5->unack.qlen >= h5->tx_win)
Johan Hedberg3f27e952012-07-16 16:12:04 +0300723 goto unlock;
724
Valentin Iliea08b15e2013-08-12 18:46:00 +0300725 skb = skb_dequeue(&h5->rel);
726 if (skb != NULL) {
Johan Hedberg40f10222012-07-16 16:12:09 +0300727 nskb = h5_prepare_pkt(hu, bt_cb(skb)->pkt_type,
Johan Hedbergc0a1b732012-07-16 16:12:06 +0300728 skb->data, skb->len);
Johan Hedberg3f27e952012-07-16 16:12:04 +0300729 if (nskb) {
730 __skb_queue_tail(&h5->unack, skb);
731 mod_timer(&h5->timer, jiffies + H5_ACK_TIMEOUT);
732 spin_unlock_irqrestore(&h5->unack.lock, flags);
733 return nskb;
734 }
735
736 skb_queue_head(&h5->rel, skb);
737 BT_ERR("Could not dequeue pkt because alloc_skb failed");
738 }
739
740unlock:
741 spin_unlock_irqrestore(&h5->unack.lock, flags);
742
Johan Hedberge0482102012-07-16 16:12:19 +0300743 if (test_bit(H5_TX_ACK_REQ, &h5->flags))
Johan Hedberg40f10222012-07-16 16:12:09 +0300744 return h5_prepare_pkt(hu, HCI_3WIRE_ACK_PKT, NULL, 0);
Johan Hedberg7d664fb2012-07-16 16:12:03 +0300745
Johan Hedberg7dec65c2012-07-16 16:12:02 +0300746 return NULL;
747}
748
749static int h5_flush(struct hci_uart *hu)
750{
Johan Hedberg7d664fb2012-07-16 16:12:03 +0300751 BT_DBG("hu %p", hu);
752 return 0;
Johan Hedberg7dec65c2012-07-16 16:12:02 +0300753}
754
755static struct hci_uart_proto h5p = {
756 .id = HCI_UART_3WIRE,
757 .open = h5_open,
758 .close = h5_close,
759 .recv = h5_recv,
760 .enqueue = h5_enqueue,
761 .dequeue = h5_dequeue,
762 .flush = h5_flush,
763};
764
765int __init h5_init(void)
766{
767 int err = hci_uart_register_proto(&h5p);
768
769 if (!err)
770 BT_INFO("HCI Three-wire UART (H5) protocol initialized");
771 else
772 BT_ERR("HCI Three-wire UART (H5) protocol init failed");
773
774 return err;
775}
776
777int __exit h5_deinit(void)
778{
779 return hci_uart_unregister_proto(&h5p);
780}