Merge tag 'mac80211-next-for-john-2014-11-04' of git://git.kernel.org/pub/scm/linux...
[cascardo/linux.git] / drivers / bluetooth / hci_h5.c
1 /*
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
33 #define HCI_3WIRE_ACK_PKT       0
34 #define HCI_3WIRE_LINK_PKT      15
35
36 /* Sliding window size */
37 #define H5_TX_WIN_MAX           4
38
39 #define H5_ACK_TIMEOUT  msecs_to_jiffies(250)
40 #define H5_SYNC_TIMEOUT msecs_to_jiffies(100)
41
42 /*
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
48 /* 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
56 #define SLIP_DELIMITER  0xc0
57 #define SLIP_ESC        0xdb
58 #define SLIP_ESC_DELIM  0xdc
59 #define SLIP_ESC_ESC    0xdd
60
61 /* H5 state flags */
62 enum {
63         H5_RX_ESC,      /* SLIP escape mode */
64         H5_TX_ACK_REQ,  /* Pending ack to send */
65 };
66
67 struct h5 {
68         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 */
71
72         unsigned long           flags;
73
74         struct sk_buff          *rx_skb;        /* Receive buffer */
75         size_t                  rx_pending;     /* Expecting more bytes */
76         u8                      rx_ack;         /* Last ack number received */
77
78         int                     (*rx_func) (struct hci_uart *hu, u8 c);
79
80         struct timer_list       timer;          /* Retransmission timer */
81
82         u8                      tx_seq;         /* Next seq number to send */
83         u8                      tx_ack;         /* Next ack number to send */
84         u8                      tx_win;         /* Sliding window size */
85
86         enum {
87                 H5_UNINITIALIZED,
88                 H5_INITIALIZED,
89                 H5_ACTIVE,
90         } state;
91
92         enum {
93                 H5_AWAKE,
94                 H5_SLEEPING,
95                 H5_WAKING_UP,
96         } sleep;
97 };
98
99 static void h5_reset_rx(struct h5 *h5);
100
101 static 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
117 static 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
127 static void h5_timed_event(unsigned long arg)
128 {
129         const unsigned char sync_req[] = { 0x01, 0x7e };
130         unsigned char conf_req[] = { 0x03, 0xfc, 0x01 };
131         struct hci_uart *hu = (struct hci_uart *) arg;
132         struct h5 *h5 = hu->priv;
133         struct sk_buff *skb;
134         unsigned long flags;
135
136         BT_DBG("%s", hu->hdev->name);
137
138         if (h5->state == H5_UNINITIALIZED)
139                 h5_link_control(hu, sync_req, sizeof(sync_req));
140
141         if (h5->state == H5_INITIALIZED) {
142                 conf_req[2] = h5_cfg_field(h5);
143                 h5_link_control(hu, conf_req, sizeof(conf_req));
144         }
145
146         if (h5->state != H5_ACTIVE) {
147                 mod_timer(&h5->timer, jiffies + H5_SYNC_TIMEOUT);
148                 goto wakeup;
149         }
150
151         if (h5->sleep != H5_AWAKE) {
152                 h5->sleep = H5_SLEEPING;
153                 goto wakeup;
154         }
155
156         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
167 wakeup:
168         hci_uart_tx_wakeup(hu);
169 }
170
171 static 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
201 static int h5_open(struct hci_uart *hu)
202 {
203         struct h5 *h5;
204         const unsigned char sync[] = { 0x01, 0x7e };
205
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
218         h5_reset_rx(h5);
219
220         init_timer(&h5->timer);
221         h5->timer.function = h5_timed_event;
222         h5->timer.data = (unsigned long) hu;
223
224         h5->tx_win = H5_TX_WIN_MAX;
225
226         set_bit(HCI_UART_INIT_PENDING, &hu->hdev_flags);
227
228         /* Send initial sync request */
229         h5_link_control(hu, sync, sizeof(sync));
230         mod_timer(&h5->timer, jiffies + H5_SYNC_TIMEOUT);
231
232         return 0;
233 }
234
235 static int h5_close(struct hci_uart *hu)
236 {
237         struct h5 *h5 = hu->priv;
238
239         del_timer_sync(&h5->timer);
240
241         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;
248 }
249
250 static 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);
260         if (to_remove == 0)
261                 goto unlock;
262
263         seq = h5->tx_seq;
264
265         while (to_remove > 0) {
266                 if (h5->rx_ack == seq)
267                         break;
268
269                 to_remove--;
270                 seq = (seq - 1) & 0x07;
271         }
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
288 unlock:
289         spin_unlock_irqrestore(&h5->unack.lock, flags);
290 }
291
292 static void h5_handle_internal_rx(struct hci_uart *hu)
293 {
294         struct h5 *h5 = hu->priv;
295         const unsigned char sync_req[] = { 0x01, 0x7e };
296         const unsigned char sync_rsp[] = { 0x02, 0x7d };
297         unsigned char conf_req[] = { 0x03, 0xfc, 0x01 };
298         const unsigned char conf_rsp[] = { 0x04, 0x7b };
299         const unsigned char wakeup_req[] = { 0x05, 0xfa };
300         const unsigned char woken_req[] = { 0x06, 0xf9 };
301         const unsigned char sleep_req[] = { 0x07, 0x78 };
302         const unsigned char *hdr = h5->rx_skb->data;
303         const unsigned char *data = &h5->rx_skb->data[4];
304
305         BT_DBG("%s", hu->hdev->name);
306
307         if (H5_HDR_PKT_TYPE(hdr) != HCI_3WIRE_LINK_PKT)
308                 return;
309
310         if (H5_HDR_LEN(hdr) < 2)
311                 return;
312
313         conf_req[2] = h5_cfg_field(h5);
314
315         if (memcmp(data, sync_req, 2) == 0) {
316                 if (h5->state == H5_ACTIVE)
317                         h5_peer_reset(hu);
318                 h5_link_control(hu, sync_rsp, 2);
319         } else if (memcmp(data, sync_rsp, 2) == 0) {
320                 if (h5->state == H5_ACTIVE)
321                         h5_peer_reset(hu);
322                 h5->state = H5_INITIALIZED;
323                 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) {
328                 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);
331                 h5->state = H5_ACTIVE;
332                 hci_uart_init_ready(hu);
333                 return;
334         } else if (memcmp(data, sleep_req, 2) == 0) {
335                 BT_DBG("Peer went to sleep");
336                 h5->sleep = H5_SLEEPING;
337                 return;
338         } else if (memcmp(data, woken_req, 2) == 0) {
339                 BT_DBG("Peer woke up");
340                 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;
345         } else {
346                 BT_DBG("Link Control: 0x%02hhx 0x%02hhx", data[0], data[1]);
347                 return;
348         }
349
350         hci_uart_tx_wakeup(hu);
351 }
352
353 static void h5_complete_rx_pkt(struct hci_uart *hu)
354 {
355         struct h5 *h5 = hu->priv;
356         const unsigned char *hdr = h5->rx_skb->data;
357
358         if (H5_HDR_RELIABLE(hdr)) {
359                 h5->tx_ack = (h5->tx_ack + 1) % 8;
360                 set_bit(H5_TX_ACK_REQ, &h5->flags);
361                 hci_uart_tx_wakeup(hu);
362         }
363
364         h5->rx_ack = H5_HDR_ACK(hdr);
365
366         h5_pkt_cull(h5);
367
368         switch (H5_HDR_PKT_TYPE(hdr)) {
369         case HCI_EVENT_PKT:
370         case HCI_ACLDATA_PKT:
371         case HCI_SCODATA_PKT:
372                 bt_cb(h5->rx_skb)->pkt_type = H5_HDR_PKT_TYPE(hdr);
373
374                 /* Remove Three-wire header */
375                 skb_pull(h5->rx_skb, 4);
376
377                 hci_recv_frame(hu->hdev, h5->rx_skb);
378                 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
390 static int h5_rx_crc(struct hci_uart *hu, unsigned char c)
391 {
392         h5_complete_rx_pkt(hu);
393
394         return 0;
395 }
396
397 static 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
402         if (H5_HDR_CRC(hdr)) {
403                 h5->rx_func = h5_rx_crc;
404                 h5->rx_pending = 2;
405         } else {
406                 h5_complete_rx_pkt(hu);
407         }
408
409         return 0;
410 }
411
412 static 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
417         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
422         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
428         if (H5_HDR_RELIABLE(hdr) && H5_HDR_SEQ(hdr) != h5->tx_ack) {
429                 BT_ERR("Out-of-order packet arrived (%u != %u)",
430                        H5_HDR_SEQ(hdr), h5->tx_ack);
431                 h5_reset_rx(h5);
432                 return 0;
433         }
434
435         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);
439                 return 0;
440         }
441
442         h5->rx_func = h5_rx_payload;
443         h5->rx_pending = H5_HDR_LEN(hdr);
444
445         return 0;
446 }
447
448 static int h5_rx_pkt_start(struct hci_uart *hu, unsigned char c)
449 {
450         struct h5 *h5 = hu->priv;
451
452         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
470 static int h5_rx_delimiter(struct hci_uart *hu, unsigned char c)
471 {
472         struct h5 *h5 = hu->priv;
473
474         if (c == SLIP_DELIMITER)
475                 h5->rx_func = h5_rx_pkt_start;
476
477         return 1;
478 }
479
480 static 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
485         if (!test_bit(H5_RX_ESC, &h5->flags) && c == SLIP_ESC) {
486                 set_bit(H5_RX_ESC, &h5->flags);
487                 return;
488         }
489
490         if (test_and_clear_bit(H5_RX_ESC, &h5->flags)) {
491                 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                 }
503         }
504
505         memcpy(skb_put(h5->rx_skb, 1), byte, 1);
506         h5->rx_pending--;
507
508         BT_DBG("unsliped 0x%02hhx, rx_pending %zu", *byte, h5->rx_pending);
509 }
510
511 static 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;
520         clear_bit(H5_RX_ESC, &h5->flags);
521 }
522
523 static int h5_recv(struct hci_uart *hu, void *data, int count)
524 {
525         struct h5 *h5 = hu->priv;
526         unsigned char *ptr = data;
527
528         BT_DBG("%s pending %zu count %d", hu->hdev->name, h5->rx_pending,
529                count);
530
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;
556 }
557
558 static int h5_enqueue(struct hci_uart *hu, struct sk_buff *skb)
559 {
560         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
568         if (h5->state != H5_ACTIVE) {
569                 BT_ERR("Ignoring HCI data in non-active state");
570                 kfree_skb(skb);
571                 return 0;
572         }
573
574         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
593 static void h5_slip_delim(struct sk_buff *skb)
594 {
595         const char delim = SLIP_DELIMITER;
596
597         memcpy(skb_put(skb, 1), &delim, 1);
598 }
599
600 static 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
617 static 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
631 static struct sk_buff *h5_prepare_pkt(struct hci_uart *hu, u8 pkt_type,
632                                       const u8 *data, size_t len)
633 {
634         struct h5 *h5 = hu->priv;
635         struct sk_buff *nskb;
636         u8 hdr[4];
637         int i;
638
639         if (!valid_packet_type(pkt_type)) {
640                 BT_ERR("Unknown packet type %u", pkt_type);
641                 return NULL;
642         }
643
644         /*
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
658         hdr[0] = h5->tx_ack << 3;
659         clear_bit(H5_TX_ACK_REQ, &h5->flags);
660
661         /* Reliable packet? */
662         if (pkt_type == HCI_ACLDATA_PKT || pkt_type == HCI_COMMAND_PKT) {
663                 hdr[0] |= 1 << 7;
664                 hdr[0] |= h5->tx_seq;
665                 h5->tx_seq = (h5->tx_seq + 1) % 8;
666         }
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
672         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
677         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
688 static struct sk_buff *h5_dequeue(struct hci_uart *hu)
689 {
690         struct h5 *h5 = hu->priv;
691         unsigned long flags;
692         struct sk_buff *skb, *nskb;
693
694         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
707         skb = skb_dequeue(&h5->unrel);
708         if (skb != NULL) {
709                 nskb = h5_prepare_pkt(hu, bt_cb(skb)->pkt_type,
710                                       skb->data, skb->len);
711                 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
720         spin_lock_irqsave_nested(&h5->unack.lock, flags, SINGLE_DEPTH_NESTING);
721
722         if (h5->unack.qlen >= h5->tx_win)
723                 goto unlock;
724
725         skb = skb_dequeue(&h5->rel);
726         if (skb != NULL) {
727                 nskb = h5_prepare_pkt(hu, bt_cb(skb)->pkt_type,
728                                       skb->data, skb->len);
729                 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
740 unlock:
741         spin_unlock_irqrestore(&h5->unack.lock, flags);
742
743         if (test_bit(H5_TX_ACK_REQ, &h5->flags))
744                 return h5_prepare_pkt(hu, HCI_3WIRE_ACK_PKT, NULL, 0);
745
746         return NULL;
747 }
748
749 static int h5_flush(struct hci_uart *hu)
750 {
751         BT_DBG("hu %p", hu);
752         return 0;
753 }
754
755 static 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
765 int __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
777 int __exit h5_deinit(void)
778 {
779         return hci_uart_unregister_proto(&h5p);
780 }