blob: 022a6bcb432307aaa8c033accb0b6d55315647f9 [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 Hedberg3f27e952012-07-16 16:12:04 +030036#define H5_TXWINSIZE 4
37
38#define H5_ACK_TIMEOUT msecs_to_jiffies(250)
Johan Hedberg40f10222012-07-16 16:12:09 +030039#define H5_SYNC_TIMEOUT msecs_to_jiffies(100)
Johan Hedberg3f27e952012-07-16 16:12:04 +030040
Johan Hedbergbc1f35b2012-07-16 16:12:05 +030041/*
42 * Maximum Three-wire packet:
43 * 4 byte header + max value for 12-bit length + 2 bytes for CRC
44 */
45#define H5_MAX_LEN (4 + 0xfff + 2)
46
Johan Hedberg01977c02012-07-16 16:12:07 +030047/* Convenience macros for reading Three-wire header values */
48#define H5_HDR_SEQ(hdr) ((hdr)[0] & 0x07)
49#define H5_HDR_ACK(hdr) (((hdr)[0] >> 3) & 0x07)
50#define H5_HDR_CRC(hdr) (((hdr)[0] >> 6) & 0x01)
51#define H5_HDR_RELIABLE(hdr) (((hdr)[0] >> 7) & 0x01)
52#define H5_HDR_PKT_TYPE(hdr) ((hdr)[1] & 0x0f)
53#define H5_HDR_LEN(hdr) ((((hdr)[1] >> 4) & 0xff) + ((hdr)[2] << 4))
54
Johan Hedbergbc1f35b2012-07-16 16:12:05 +030055#define SLIP_DELIMITER 0xc0
56#define SLIP_ESC 0xdb
57#define SLIP_ESC_DELIM 0xdc
58#define SLIP_ESC_ESC 0xdd
59
Johan Hedberg7d664fb2012-07-16 16:12:03 +030060struct h5 {
Johan Hedbergbc1f35b2012-07-16 16:12:05 +030061 struct sk_buff_head unack; /* Unack'ed packets queue */
62 struct sk_buff_head rel; /* Reliable packets queue */
63 struct sk_buff_head unrel; /* Unreliable packets queue */
Johan Hedberg7d664fb2012-07-16 16:12:03 +030064
Johan Hedbergbc1f35b2012-07-16 16:12:05 +030065 struct sk_buff *rx_skb; /* Receive buffer */
66 size_t rx_pending; /* Expecting more bytes */
67 bool rx_esc; /* SLIP escape mode */
Johan Hedberg43eb12d2012-07-16 16:12:08 +030068 u8 rx_ack; /* Last ack number received */
Johan Hedberg7d664fb2012-07-16 16:12:03 +030069
Johan Hedbergbc1f35b2012-07-16 16:12:05 +030070 int (*rx_func) (struct hci_uart *hu, u8 c);
Johan Hedberg3f27e952012-07-16 16:12:04 +030071
Johan Hedbergbc1f35b2012-07-16 16:12:05 +030072 struct timer_list timer; /* Retransmission timer */
Johan Hedberg7d664fb2012-07-16 16:12:03 +030073
Johan Hedberg43eb12d2012-07-16 16:12:08 +030074 bool tx_ack_req; /* Pending ack to send */
75 u8 tx_seq; /* Next seq number to send */
Johan Hedberg40f10222012-07-16 16:12:09 +030076 u8 tx_ack; /* Next ack number to send */
Johan Hedberg7d664fb2012-07-16 16:12:03 +030077};
78
Johan Hedbergbc1f35b2012-07-16 16:12:05 +030079static void h5_reset_rx(struct h5 *h5);
80
Johan Hedberg3f27e952012-07-16 16:12:04 +030081static void h5_timed_event(unsigned long arg)
82{
83 struct hci_uart *hu = (struct hci_uart *) arg;
84 struct h5 *h5 = hu->priv;
85 struct sk_buff *skb;
86 unsigned long flags;
87
88 BT_DBG("hu %p retransmitting %u pkts", hu, h5->unack.qlen);
89
90 spin_lock_irqsave_nested(&h5->unack.lock, flags, SINGLE_DEPTH_NESTING);
91
92 while ((skb = __skb_dequeue_tail(&h5->unack)) != NULL) {
Johan Hedberg43eb12d2012-07-16 16:12:08 +030093 h5->tx_seq = (h5->tx_seq - 1) & 0x07;
Johan Hedberg3f27e952012-07-16 16:12:04 +030094 skb_queue_head(&h5->rel, skb);
95 }
96
97 spin_unlock_irqrestore(&h5->unack.lock, flags);
98
99 hci_uart_tx_wakeup(hu);
100}
101
Johan Hedberg40f10222012-07-16 16:12:09 +0300102static void h5_link_control(struct hci_uart *hu, const void *data, size_t len)
103{
104 struct h5 *h5 = hu->priv;
105 struct sk_buff *nskb;
106
107 nskb = alloc_skb(3, GFP_ATOMIC);
108 if (!nskb)
109 return;
110
111 bt_cb(nskb)->pkt_type = HCI_3WIRE_LINK_PKT;
112
113 memcpy(skb_put(nskb, len), data, len);
114
115 skb_queue_tail(&h5->unrel, nskb);
116}
117
Johan Hedberg7dec65c2012-07-16 16:12:02 +0300118static int h5_open(struct hci_uart *hu)
119{
Johan Hedberg7d664fb2012-07-16 16:12:03 +0300120 struct h5 *h5;
Johan Hedberg40f10222012-07-16 16:12:09 +0300121 const unsigned char sync[] = { 0x01, 0x7e };
Johan Hedberg7d664fb2012-07-16 16:12:03 +0300122
123 BT_DBG("hu %p", hu);
124
125 h5 = kzalloc(sizeof(*h5), GFP_KERNEL);
126 if (!h5)
127 return -ENOMEM;
128
129 hu->priv = h5;
130
131 skb_queue_head_init(&h5->unack);
132 skb_queue_head_init(&h5->rel);
133 skb_queue_head_init(&h5->unrel);
134
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300135 h5_reset_rx(h5);
136
Johan Hedberg3f27e952012-07-16 16:12:04 +0300137 init_timer(&h5->timer);
138 h5->timer.function = h5_timed_event;
139 h5->timer.data = (unsigned long) hu;
140
Johan Hedberg40f10222012-07-16 16:12:09 +0300141 /* Send initial sync request */
142 h5_link_control(hu, sync, sizeof(sync));
143 mod_timer(&h5->timer, jiffies + H5_SYNC_TIMEOUT);
144
Johan Hedberg7d664fb2012-07-16 16:12:03 +0300145 return 0;
Johan Hedberg7dec65c2012-07-16 16:12:02 +0300146}
147
148static int h5_close(struct hci_uart *hu)
149{
Johan Hedberg7d664fb2012-07-16 16:12:03 +0300150 struct h5 *h5 = hu->priv;
151
152 skb_queue_purge(&h5->unack);
153 skb_queue_purge(&h5->rel);
154 skb_queue_purge(&h5->unrel);
155
Johan Hedberg3f27e952012-07-16 16:12:04 +0300156 del_timer(&h5->timer);
157
Johan Hedberg7d664fb2012-07-16 16:12:03 +0300158 kfree(h5);
159
160 return 0;
Johan Hedberg7dec65c2012-07-16 16:12:02 +0300161}
162
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300163static void h5_pkt_cull(struct h5 *h5)
164{
165 struct sk_buff *skb, *tmp;
166 unsigned long flags;
167 int i, to_remove;
168 u8 seq;
169
170 spin_lock_irqsave(&h5->unack.lock, flags);
171
172 to_remove = skb_queue_len(&h5->unack);
Johan Hedberg40f10222012-07-16 16:12:09 +0300173 if (to_remove == 0)
174 goto unlock;
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300175
176 seq = h5->tx_seq;
177
178 while (to_remove > 0) {
179 if (h5->rx_ack == seq)
180 break;
181
182 to_remove--;
183 seq = (seq - 1) % 8;
184 }
185
186 if (seq != h5->rx_ack)
187 BT_ERR("Controller acked invalid packet");
188
189 i = 0;
190 skb_queue_walk_safe(&h5->unack, skb, tmp) {
191 if (i++ >= to_remove)
192 break;
193
194 __skb_unlink(skb, &h5->unack);
195 kfree_skb(skb);
196 }
197
198 if (skb_queue_empty(&h5->unack))
199 del_timer(&h5->timer);
200
Johan Hedberg40f10222012-07-16 16:12:09 +0300201unlock:
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300202 spin_unlock_irqrestore(&h5->unack.lock, flags);
203}
204
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300205static void h5_handle_internal_rx(struct hci_uart *hu)
206{
Johan Hedberg40f10222012-07-16 16:12:09 +0300207 struct h5 *h5 = hu->priv;
208 const unsigned char sync_req[] = { 0x01, 0x7e };
209 const unsigned char sync_rsp[] = { 0x02, 0x7d };
210 const unsigned char conf_req[] = { 0x03, 0xfc, 0x01 };
211 const unsigned char conf_rsp[] = { 0x04, 0x7b, 0x01 };
212 const unsigned char *hdr = h5->rx_skb->data;
213 const unsigned char *data = &h5->rx_skb->data[4];
214
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300215 BT_DBG("%s", hu->hdev->name);
Johan Hedberg40f10222012-07-16 16:12:09 +0300216
217 if (H5_HDR_PKT_TYPE(hdr) != HCI_3WIRE_LINK_PKT)
218 return;
219
220 if (H5_HDR_LEN(hdr) < 2)
221 return;
222
223 if (memcmp(data, sync_req, 2) == 0) {
224 h5_link_control(hu, sync_rsp, 2);
225 } else if (memcmp(data, sync_rsp, 2) == 0) {
226 h5_link_control(hu, conf_req, 3);
227 } else if (memcmp(data, conf_req, 2) == 0) {
228 h5_link_control(hu, conf_rsp, 2);
229 h5_link_control(hu, conf_req, 3);
230 } else if (memcmp(data, conf_rsp, 2) == 0) {
231 BT_DBG("Three-wire init sequence complete");
232 return;
233 } else {
234 BT_DBG("Link Control: 0x%02hhx 0x%02hhx", data[0], data[1]);
235 return;
236 }
237
238 hci_uart_tx_wakeup(hu);
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300239}
240
241static void h5_complete_rx_pkt(struct hci_uart *hu)
242{
243 struct h5 *h5 = hu->priv;
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300244 const unsigned char *hdr = h5->rx_skb->data;
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300245
246 BT_DBG("%s", hu->hdev->name);
247
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300248 if (H5_HDR_RELIABLE(hdr)) {
Johan Hedberg40f10222012-07-16 16:12:09 +0300249 h5->tx_ack = (h5->tx_ack + 1) % 8;
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300250 h5->tx_ack_req = true;
Johan Hedberg40f10222012-07-16 16:12:09 +0300251 hci_uart_tx_wakeup(hu);
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300252 }
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300253
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300254 h5->rx_ack = H5_HDR_ACK(hdr);
255
256 h5_pkt_cull(h5);
257
258 switch (H5_HDR_PKT_TYPE(hdr)) {
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300259 case HCI_EVENT_PKT:
260 case HCI_ACLDATA_PKT:
261 case HCI_SCODATA_PKT:
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300262 bt_cb(h5->rx_skb)->pkt_type = H5_HDR_PKT_TYPE(hdr);
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300263
264 /* Remove Three-wire header */
265 skb_pull(h5->rx_skb, 4);
266
267 hci_recv_frame(h5->rx_skb);
268 h5->rx_skb = NULL;
269
270 break;
271
272 default:
273 h5_handle_internal_rx(hu);
274 break;
275 }
276
277 h5_reset_rx(h5);
278}
279
280static int h5_rx_crc(struct hci_uart *hu, unsigned char c)
281{
282 struct h5 *h5 = hu->priv;
283
284 BT_DBG("%s 0x%02hhx", hu->hdev->name, c);
285
286 h5_complete_rx_pkt(hu);
287 h5_reset_rx(h5);
288
289 return 0;
290}
291
292static int h5_rx_payload(struct hci_uart *hu, unsigned char c)
293{
294 struct h5 *h5 = hu->priv;
295 const unsigned char *hdr = h5->rx_skb->data;
296
297 BT_DBG("%s 0x%02hhx", hu->hdev->name, c);
298
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300299 if (H5_HDR_CRC(hdr)) {
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300300 h5->rx_func = h5_rx_crc;
301 h5->rx_pending = 2;
302 } else {
303 h5_complete_rx_pkt(hu);
304 h5_reset_rx(h5);
305 }
306
307 return 0;
308}
309
310static int h5_rx_3wire_hdr(struct hci_uart *hu, unsigned char c)
311{
312 struct h5 *h5 = hu->priv;
313 const unsigned char *hdr = h5->rx_skb->data;
314
315 BT_DBG("%s 0x%02hhx", hu->hdev->name, c);
316
Johan Hedberg40f10222012-07-16 16:12:09 +0300317 BT_DBG("%s rx: seq %u ack %u crc %u rel %u type %u len %u",
318 hu->hdev->name, H5_HDR_SEQ(hdr), H5_HDR_ACK(hdr),
319 H5_HDR_CRC(hdr), H5_HDR_RELIABLE(hdr), H5_HDR_PKT_TYPE(hdr),
320 H5_HDR_LEN(hdr));
321
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300322 if (((hdr[0] + hdr[1] + hdr[2] + hdr[3]) & 0xff) != 0xff) {
323 BT_ERR("Invalid header checksum");
324 h5_reset_rx(h5);
325 return 0;
326 }
327
Johan Hedberg40f10222012-07-16 16:12:09 +0300328 if (H5_HDR_RELIABLE(hdr) && H5_HDR_SEQ(hdr) != h5->tx_ack) {
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300329 BT_ERR("Out-of-order packet arrived (%u != %u)",
Johan Hedberg40f10222012-07-16 16:12:09 +0300330 H5_HDR_SEQ(hdr), h5->tx_ack);
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300331 h5_reset_rx(h5);
332 return 0;
333 }
334
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300335 h5->rx_func = h5_rx_payload;
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300336 h5->rx_pending = H5_HDR_LEN(hdr);
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300337
338 return 0;
339}
340
341static int h5_rx_pkt_start(struct hci_uart *hu, unsigned char c)
342{
343 struct h5 *h5 = hu->priv;
344
345 BT_DBG("%s 0x%02hhx", hu->hdev->name, c);
346
347 if (c == SLIP_DELIMITER)
348 return 1;
349
350 h5->rx_func = h5_rx_3wire_hdr;
351 h5->rx_pending = 4;
352
353 h5->rx_skb = bt_skb_alloc(H5_MAX_LEN, GFP_ATOMIC);
354 if (!h5->rx_skb) {
355 BT_ERR("Can't allocate mem for new packet");
356 h5_reset_rx(h5);
357 return -ENOMEM;
358 }
359
360 h5->rx_skb->dev = (void *) hu->hdev;
361
362 return 0;
363}
364
365static int h5_rx_delimiter(struct hci_uart *hu, unsigned char c)
366{
367 struct h5 *h5 = hu->priv;
368
369 BT_DBG("%s 0x%02hhx", hu->hdev->name, c);
370
371 if (c == SLIP_DELIMITER)
372 h5->rx_func = h5_rx_pkt_start;
373
374 return 1;
375}
376
377static void h5_unslip_one_byte(struct h5 *h5, unsigned char c)
378{
379 const u8 delim = SLIP_DELIMITER, esc = SLIP_ESC;
380 const u8 *byte = &c;
381
382 if (!h5->rx_esc && c == SLIP_ESC) {
383 h5->rx_esc = true;
384 return;
385 }
386
387 if (h5->rx_esc) {
388 switch (c) {
389 case SLIP_ESC_DELIM:
390 byte = &delim;
391 break;
392 case SLIP_ESC_ESC:
393 byte = &esc;
394 break;
395 default:
396 BT_ERR("Invalid esc byte 0x%02hhx", c);
397 h5_reset_rx(h5);
398 return;
399 }
400
401 h5->rx_esc = false;
402 }
403
404 memcpy(skb_put(h5->rx_skb, 1), byte, 1);
405 h5->rx_pending--;
406
407 BT_DBG("unsliped 0x%02hhx", *byte);
408}
409
410static void h5_reset_rx(struct h5 *h5)
411{
412 if (h5->rx_skb) {
413 kfree_skb(h5->rx_skb);
414 h5->rx_skb = NULL;
415 }
416
417 h5->rx_func = h5_rx_delimiter;
418 h5->rx_pending = 0;
419 h5->rx_esc = false;
420}
421
Johan Hedberg7dec65c2012-07-16 16:12:02 +0300422static int h5_recv(struct hci_uart *hu, void *data, int count)
423{
Johan Hedbergbc1f35b2012-07-16 16:12:05 +0300424 struct h5 *h5 = hu->priv;
425 unsigned char *ptr = data;
426
427 BT_DBG("%s count %d", hu->hdev->name, count);
428
429 while (count > 0) {
430 int processed;
431
432 if (h5->rx_pending > 0) {
433 if (*ptr == SLIP_DELIMITER) {
434 BT_ERR("Too short H5 packet");
435 h5_reset_rx(h5);
436 continue;
437 }
438
439 h5_unslip_one_byte(h5, *ptr);
440
441 ptr++; count--;
442 continue;
443 }
444
445 processed = h5->rx_func(hu, *ptr);
446 if (processed < 0)
447 return processed;
448
449 ptr += processed;
450 count -= processed;
451 }
452
453 return 0;
Johan Hedberg7dec65c2012-07-16 16:12:02 +0300454}
455
456static int h5_enqueue(struct hci_uart *hu, struct sk_buff *skb)
457{
Johan Hedberg7d664fb2012-07-16 16:12:03 +0300458 struct h5 *h5 = hu->priv;
459
460 if (skb->len > 0xfff) {
461 BT_ERR("Packet too long (%u bytes)", skb->len);
462 kfree_skb(skb);
463 return 0;
464 }
465
466 switch (bt_cb(skb)->pkt_type) {
467 case HCI_ACLDATA_PKT:
468 case HCI_COMMAND_PKT:
469 skb_queue_tail(&h5->rel, skb);
470 break;
471
472 case HCI_SCODATA_PKT:
473 skb_queue_tail(&h5->unrel, skb);
474 break;
475
476 default:
477 BT_ERR("Unknown packet type %u", bt_cb(skb)->pkt_type);
478 kfree_skb(skb);
479 break;
480 }
481
482 return 0;
483}
484
Johan Hedbergc0a1b732012-07-16 16:12:06 +0300485static void h5_slip_delim(struct sk_buff *skb)
Johan Hedberg7d664fb2012-07-16 16:12:03 +0300486{
Johan Hedbergc0a1b732012-07-16 16:12:06 +0300487 const char delim = SLIP_DELIMITER;
488
489 memcpy(skb_put(skb, 1), &delim, 1);
490}
491
492static void h5_slip_one_byte(struct sk_buff *skb, u8 c)
493{
494 const char esc_delim[2] = { SLIP_ESC, SLIP_ESC_DELIM };
495 const char esc_esc[2] = { SLIP_ESC, SLIP_ESC_ESC };
496
497 switch (c) {
498 case SLIP_DELIMITER:
499 memcpy(skb_put(skb, 2), &esc_delim, 2);
500 break;
501 case SLIP_ESC:
502 memcpy(skb_put(skb, 2), &esc_esc, 2);
503 break;
504 default:
505 memcpy(skb_put(skb, 1), &c, 1);
506 }
507}
508
Johan Hedberg40f10222012-07-16 16:12:09 +0300509static struct sk_buff *h5_build_pkt(struct hci_uart *hu, bool rel, u8 pkt_type,
Johan Hedbergc0a1b732012-07-16 16:12:06 +0300510 const u8 *data, size_t len)
511{
Johan Hedberg40f10222012-07-16 16:12:09 +0300512 struct h5 *h5 = hu->priv;
Johan Hedbergc0a1b732012-07-16 16:12:06 +0300513 struct sk_buff *nskb;
514 u8 hdr[4];
515 int i;
516
517 /*
518 * Max len of packet: (original len + 4 (H5 hdr) + 2 (crc)) * 2
519 * (because bytes 0xc0 and 0xdb are escaped, worst case is when
520 * the packet is all made of 0xc0 and 0xdb) + 2 (0xc0
521 * delimiters at start and end).
522 */
523 nskb = alloc_skb((len + 6) * 2 + 2, GFP_ATOMIC);
524 if (!nskb)
525 return NULL;
526
527 bt_cb(nskb)->pkt_type = pkt_type;
528
529 h5_slip_delim(nskb);
530
Johan Hedberg40f10222012-07-16 16:12:09 +0300531 hdr[0] = h5->tx_ack << 3;
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300532 h5->tx_ack_req = false;
Johan Hedbergc0a1b732012-07-16 16:12:06 +0300533
534 if (rel) {
535 hdr[0] |= 1 << 7;
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300536 hdr[0] |= h5->tx_seq;
537 h5->tx_seq = (h5->tx_seq + 1) % 8;
Johan Hedbergc0a1b732012-07-16 16:12:06 +0300538 }
539
540 hdr[1] = pkt_type | ((len & 0x0f) << 4);
541 hdr[2] = len >> 4;
542 hdr[3] = ~((hdr[0] + hdr[1] + hdr[2]) & 0xff);
543
Johan Hedberg40f10222012-07-16 16:12:09 +0300544 BT_DBG("%s tx: seq %u ack %u crc %u rel %u type %u len %u",
545 hu->hdev->name, H5_HDR_SEQ(hdr), H5_HDR_ACK(hdr),
546 H5_HDR_CRC(hdr), H5_HDR_RELIABLE(hdr), H5_HDR_PKT_TYPE(hdr),
547 H5_HDR_LEN(hdr));
548
Johan Hedbergc0a1b732012-07-16 16:12:06 +0300549 for (i = 0; i < 4; i++)
550 h5_slip_one_byte(nskb, hdr[i]);
551
552 for (i = 0; i < len; i++)
553 h5_slip_one_byte(nskb, data[i]);
554
555 h5_slip_delim(nskb);
556
557 return nskb;
558}
559
Johan Hedberg40f10222012-07-16 16:12:09 +0300560static struct sk_buff *h5_prepare_pkt(struct hci_uart *hu, u8 pkt_type,
Johan Hedbergc0a1b732012-07-16 16:12:06 +0300561 const u8 *data, size_t len)
562{
563 bool rel;
564
565 switch (pkt_type) {
566 case HCI_ACLDATA_PKT:
567 case HCI_COMMAND_PKT:
568 rel = true;
569 break;
570 case HCI_SCODATA_PKT:
571 case HCI_3WIRE_LINK_PKT:
572 case HCI_3WIRE_ACK_PKT:
573 rel = false;
574 break;
575 default:
576 BT_ERR("Unknown packet type %u", pkt_type);
577 return NULL;
578 }
579
Johan Hedberg40f10222012-07-16 16:12:09 +0300580 return h5_build_pkt(hu, rel, pkt_type, data, len);
Johan Hedberg7dec65c2012-07-16 16:12:02 +0300581}
582
583static struct sk_buff *h5_dequeue(struct hci_uart *hu)
584{
Johan Hedberg7d664fb2012-07-16 16:12:03 +0300585 struct h5 *h5 = hu->priv;
Johan Hedberg3f27e952012-07-16 16:12:04 +0300586 unsigned long flags;
Johan Hedberg7d664fb2012-07-16 16:12:03 +0300587 struct sk_buff *skb, *nskb;
588
589 if ((skb = skb_dequeue(&h5->unrel)) != NULL) {
Johan Hedberg40f10222012-07-16 16:12:09 +0300590 nskb = h5_prepare_pkt(hu, bt_cb(skb)->pkt_type,
Johan Hedbergc0a1b732012-07-16 16:12:06 +0300591 skb->data, skb->len);
Johan Hedberg7d664fb2012-07-16 16:12:03 +0300592 if (nskb) {
593 kfree_skb(skb);
594 return nskb;
595 }
596
597 skb_queue_head(&h5->unrel, skb);
598 BT_ERR("Could not dequeue pkt because alloc_skb failed");
599 }
600
Johan Hedberg3f27e952012-07-16 16:12:04 +0300601 spin_lock_irqsave_nested(&h5->unack.lock, flags, SINGLE_DEPTH_NESTING);
602
603 if (h5->unack.qlen >= H5_TXWINSIZE)
604 goto unlock;
605
606 if ((skb = skb_dequeue(&h5->rel)) != NULL) {
Johan Hedberg40f10222012-07-16 16:12:09 +0300607 nskb = h5_prepare_pkt(hu, bt_cb(skb)->pkt_type,
Johan Hedbergc0a1b732012-07-16 16:12:06 +0300608 skb->data, skb->len);
Johan Hedberg3f27e952012-07-16 16:12:04 +0300609 if (nskb) {
610 __skb_queue_tail(&h5->unack, skb);
611 mod_timer(&h5->timer, jiffies + H5_ACK_TIMEOUT);
612 spin_unlock_irqrestore(&h5->unack.lock, flags);
613 return nskb;
614 }
615
616 skb_queue_head(&h5->rel, skb);
617 BT_ERR("Could not dequeue pkt because alloc_skb failed");
618 }
619
620unlock:
621 spin_unlock_irqrestore(&h5->unack.lock, flags);
622
Johan Hedberg43eb12d2012-07-16 16:12:08 +0300623 if (h5->tx_ack_req)
Johan Hedberg40f10222012-07-16 16:12:09 +0300624 return h5_prepare_pkt(hu, HCI_3WIRE_ACK_PKT, NULL, 0);
Johan Hedberg7d664fb2012-07-16 16:12:03 +0300625
Johan Hedberg7dec65c2012-07-16 16:12:02 +0300626 return NULL;
627}
628
629static int h5_flush(struct hci_uart *hu)
630{
Johan Hedberg7d664fb2012-07-16 16:12:03 +0300631 BT_DBG("hu %p", hu);
632 return 0;
Johan Hedberg7dec65c2012-07-16 16:12:02 +0300633}
634
635static struct hci_uart_proto h5p = {
636 .id = HCI_UART_3WIRE,
637 .open = h5_open,
638 .close = h5_close,
639 .recv = h5_recv,
640 .enqueue = h5_enqueue,
641 .dequeue = h5_dequeue,
642 .flush = h5_flush,
643};
644
645int __init h5_init(void)
646{
647 int err = hci_uart_register_proto(&h5p);
648
649 if (!err)
650 BT_INFO("HCI Three-wire UART (H5) protocol initialized");
651 else
652 BT_ERR("HCI Three-wire UART (H5) protocol init failed");
653
654 return err;
655}
656
657int __exit h5_deinit(void)
658{
659 return hci_uart_unregister_proto(&h5p);
660}