Now it works.
[cbs-scheduler.git] / drivers / bluetooth / hci_ll.c
blobb91d45a41b2f6b7e88716626b392a33124b789d8
1 /*
2 * Texas Instruments' Bluetooth HCILL UART protocol
4 * HCILL (HCI Low Level) is a Texas Instruments' power management
5 * protocol extension to H4.
7 * Copyright (C) 2007 Texas Instruments, Inc.
9 * Written by Ohad Ben-Cohen <ohad@bencohen.org>
11 * Acknowledgements:
12 * This file is based on hci_h4.c, which was written
13 * by Maxim Krasnyansky and Marcel Holtmann.
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License version 2
17 * as published by the Free Software Foundation
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30 #include <linux/module.h>
31 #include <linux/kernel.h>
33 #include <linux/init.h>
34 #include <linux/sched.h>
35 #include <linux/types.h>
36 #include <linux/fcntl.h>
37 #include <linux/interrupt.h>
38 #include <linux/ptrace.h>
39 #include <linux/poll.h>
41 #include <linux/slab.h>
42 #include <linux/tty.h>
43 #include <linux/errno.h>
44 #include <linux/string.h>
45 #include <linux/signal.h>
46 #include <linux/ioctl.h>
47 #include <linux/skbuff.h>
49 #include <net/bluetooth/bluetooth.h>
50 #include <net/bluetooth/hci_core.h>
52 #include "hci_uart.h"
54 /* HCILL commands */
55 #define HCILL_GO_TO_SLEEP_IND 0x30
56 #define HCILL_GO_TO_SLEEP_ACK 0x31
57 #define HCILL_WAKE_UP_IND 0x32
58 #define HCILL_WAKE_UP_ACK 0x33
60 /* HCILL receiver States */
61 #define HCILL_W4_PACKET_TYPE 0
62 #define HCILL_W4_EVENT_HDR 1
63 #define HCILL_W4_ACL_HDR 2
64 #define HCILL_W4_SCO_HDR 3
65 #define HCILL_W4_DATA 4
67 /* HCILL states */
68 enum hcill_states_e {
69 HCILL_ASLEEP,
70 HCILL_ASLEEP_TO_AWAKE,
71 HCILL_AWAKE,
72 HCILL_AWAKE_TO_ASLEEP
75 struct hcill_cmd {
76 u8 cmd;
77 } __attribute__((packed));
79 struct ll_struct {
80 unsigned long rx_state;
81 unsigned long rx_count;
82 struct sk_buff *rx_skb;
83 struct sk_buff_head txq;
84 spinlock_t hcill_lock; /* HCILL state lock */
85 unsigned long hcill_state; /* HCILL power state */
86 struct sk_buff_head tx_wait_q; /* HCILL wait queue */
90 * Builds and sends an HCILL command packet.
91 * These are very simple packets with only 1 cmd byte
93 static int send_hcill_cmd(u8 cmd, struct hci_uart *hu)
95 int err = 0;
96 struct sk_buff *skb = NULL;
97 struct ll_struct *ll = hu->priv;
98 struct hcill_cmd *hcill_packet;
100 BT_DBG("hu %p cmd 0x%x", hu, cmd);
102 /* allocate packet */
103 skb = bt_skb_alloc(1, GFP_ATOMIC);
104 if (!skb) {
105 BT_ERR("cannot allocate memory for HCILL packet");
106 err = -ENOMEM;
107 goto out;
110 /* prepare packet */
111 hcill_packet = (struct hcill_cmd *) skb_put(skb, 1);
112 hcill_packet->cmd = cmd;
113 skb->dev = (void *) hu->hdev;
115 /* send packet */
116 skb_queue_tail(&ll->txq, skb);
117 out:
118 return err;
121 /* Initialize protocol */
122 static int ll_open(struct hci_uart *hu)
124 struct ll_struct *ll;
126 BT_DBG("hu %p", hu);
128 ll = kzalloc(sizeof(*ll), GFP_ATOMIC);
129 if (!ll)
130 return -ENOMEM;
132 skb_queue_head_init(&ll->txq);
133 skb_queue_head_init(&ll->tx_wait_q);
134 spin_lock_init(&ll->hcill_lock);
136 ll->hcill_state = HCILL_AWAKE;
138 hu->priv = ll;
140 return 0;
143 /* Flush protocol data */
144 static int ll_flush(struct hci_uart *hu)
146 struct ll_struct *ll = hu->priv;
148 BT_DBG("hu %p", hu);
150 skb_queue_purge(&ll->tx_wait_q);
151 skb_queue_purge(&ll->txq);
153 return 0;
156 /* Close protocol */
157 static int ll_close(struct hci_uart *hu)
159 struct ll_struct *ll = hu->priv;
161 BT_DBG("hu %p", hu);
163 skb_queue_purge(&ll->tx_wait_q);
164 skb_queue_purge(&ll->txq);
166 if (ll->rx_skb)
167 kfree_skb(ll->rx_skb);
169 hu->priv = NULL;
171 kfree(ll);
173 return 0;
177 * internal function, which does common work of the device wake up process:
178 * 1. places all pending packets (waiting in tx_wait_q list) in txq list.
179 * 2. changes internal state to HCILL_AWAKE.
180 * Note: assumes that hcill_lock spinlock is taken,
181 * shouldn't be called otherwise!
183 static void __ll_do_awake(struct ll_struct *ll)
185 struct sk_buff *skb = NULL;
187 while ((skb = skb_dequeue(&ll->tx_wait_q)))
188 skb_queue_tail(&ll->txq, skb);
190 ll->hcill_state = HCILL_AWAKE;
194 * Called upon a wake-up-indication from the device
196 static void ll_device_want_to_wakeup(struct hci_uart *hu)
198 unsigned long flags;
199 struct ll_struct *ll = hu->priv;
201 BT_DBG("hu %p", hu);
203 /* lock hcill state */
204 spin_lock_irqsave(&ll->hcill_lock, flags);
206 switch (ll->hcill_state) {
207 case HCILL_ASLEEP_TO_AWAKE:
209 * This state means that both the host and the BRF chip
210 * have simultaneously sent a wake-up-indication packet.
211 * Traditionaly, in this case, receiving a wake-up-indication
212 * was enough and an additional wake-up-ack wasn't needed.
213 * This has changed with the BRF6350, which does require an
214 * explicit wake-up-ack. Other BRF versions, which do not
215 * require an explicit ack here, do accept it, thus it is
216 * perfectly safe to always send one.
218 BT_DBG("dual wake-up-indication");
219 /* deliberate fall-through - do not add break */
220 case HCILL_ASLEEP:
221 /* acknowledge device wake up */
222 if (send_hcill_cmd(HCILL_WAKE_UP_ACK, hu) < 0) {
223 BT_ERR("cannot acknowledge device wake up");
224 goto out;
226 break;
227 default:
228 /* any other state is illegal */
229 BT_ERR("received HCILL_WAKE_UP_IND in state %ld", ll->hcill_state);
230 break;
233 /* send pending packets and change state to HCILL_AWAKE */
234 __ll_do_awake(ll);
236 out:
237 spin_unlock_irqrestore(&ll->hcill_lock, flags);
239 /* actually send the packets */
240 hci_uart_tx_wakeup(hu);
244 * Called upon a sleep-indication from the device
246 static void ll_device_want_to_sleep(struct hci_uart *hu)
248 unsigned long flags;
249 struct ll_struct *ll = hu->priv;
251 BT_DBG("hu %p", hu);
253 /* lock hcill state */
254 spin_lock_irqsave(&ll->hcill_lock, flags);
256 /* sanity check */
257 if (ll->hcill_state != HCILL_AWAKE)
258 BT_ERR("ERR: HCILL_GO_TO_SLEEP_IND in state %ld", ll->hcill_state);
260 /* acknowledge device sleep */
261 if (send_hcill_cmd(HCILL_GO_TO_SLEEP_ACK, hu) < 0) {
262 BT_ERR("cannot acknowledge device sleep");
263 goto out;
266 /* update state */
267 ll->hcill_state = HCILL_ASLEEP;
269 out:
270 spin_unlock_irqrestore(&ll->hcill_lock, flags);
272 /* actually send the sleep ack packet */
273 hci_uart_tx_wakeup(hu);
277 * Called upon wake-up-acknowledgement from the device
279 static void ll_device_woke_up(struct hci_uart *hu)
281 unsigned long flags;
282 struct ll_struct *ll = hu->priv;
284 BT_DBG("hu %p", hu);
286 /* lock hcill state */
287 spin_lock_irqsave(&ll->hcill_lock, flags);
289 /* sanity check */
290 if (ll->hcill_state != HCILL_ASLEEP_TO_AWAKE)
291 BT_ERR("received HCILL_WAKE_UP_ACK in state %ld", ll->hcill_state);
293 /* send pending packets and change state to HCILL_AWAKE */
294 __ll_do_awake(ll);
296 spin_unlock_irqrestore(&ll->hcill_lock, flags);
298 /* actually send the packets */
299 hci_uart_tx_wakeup(hu);
302 /* Enqueue frame for transmittion (padding, crc, etc) */
303 /* may be called from two simultaneous tasklets */
304 static int ll_enqueue(struct hci_uart *hu, struct sk_buff *skb)
306 unsigned long flags = 0;
307 struct ll_struct *ll = hu->priv;
309 BT_DBG("hu %p skb %p", hu, skb);
311 /* Prepend skb with frame type */
312 memcpy(skb_push(skb, 1), &bt_cb(skb)->pkt_type, 1);
314 /* lock hcill state */
315 spin_lock_irqsave(&ll->hcill_lock, flags);
317 /* act according to current state */
318 switch (ll->hcill_state) {
319 case HCILL_AWAKE:
320 BT_DBG("device awake, sending normally");
321 skb_queue_tail(&ll->txq, skb);
322 break;
323 case HCILL_ASLEEP:
324 BT_DBG("device asleep, waking up and queueing packet");
325 /* save packet for later */
326 skb_queue_tail(&ll->tx_wait_q, skb);
327 /* awake device */
328 if (send_hcill_cmd(HCILL_WAKE_UP_IND, hu) < 0) {
329 BT_ERR("cannot wake up device");
330 break;
332 ll->hcill_state = HCILL_ASLEEP_TO_AWAKE;
333 break;
334 case HCILL_ASLEEP_TO_AWAKE:
335 BT_DBG("device waking up, queueing packet");
336 /* transient state; just keep packet for later */
337 skb_queue_tail(&ll->tx_wait_q, skb);
338 break;
339 default:
340 BT_ERR("illegal hcill state: %ld (losing packet)", ll->hcill_state);
341 kfree_skb(skb);
342 break;
345 spin_unlock_irqrestore(&ll->hcill_lock, flags);
347 return 0;
350 static inline int ll_check_data_len(struct ll_struct *ll, int len)
352 register int room = skb_tailroom(ll->rx_skb);
354 BT_DBG("len %d room %d", len, room);
356 if (!len) {
357 hci_recv_frame(ll->rx_skb);
358 } else if (len > room) {
359 BT_ERR("Data length is too large");
360 kfree_skb(ll->rx_skb);
361 } else {
362 ll->rx_state = HCILL_W4_DATA;
363 ll->rx_count = len;
364 return len;
367 ll->rx_state = HCILL_W4_PACKET_TYPE;
368 ll->rx_skb = NULL;
369 ll->rx_count = 0;
371 return 0;
374 /* Recv data */
375 static int ll_recv(struct hci_uart *hu, void *data, int count)
377 struct ll_struct *ll = hu->priv;
378 register char *ptr;
379 struct hci_event_hdr *eh;
380 struct hci_acl_hdr *ah;
381 struct hci_sco_hdr *sh;
382 register int len, type, dlen;
384 BT_DBG("hu %p count %d rx_state %ld rx_count %ld", hu, count, ll->rx_state, ll->rx_count);
386 ptr = data;
387 while (count) {
388 if (ll->rx_count) {
389 len = min_t(unsigned int, ll->rx_count, count);
390 memcpy(skb_put(ll->rx_skb, len), ptr, len);
391 ll->rx_count -= len; count -= len; ptr += len;
393 if (ll->rx_count)
394 continue;
396 switch (ll->rx_state) {
397 case HCILL_W4_DATA:
398 BT_DBG("Complete data");
399 hci_recv_frame(ll->rx_skb);
401 ll->rx_state = HCILL_W4_PACKET_TYPE;
402 ll->rx_skb = NULL;
403 continue;
405 case HCILL_W4_EVENT_HDR:
406 eh = (struct hci_event_hdr *) ll->rx_skb->data;
408 BT_DBG("Event header: evt 0x%2.2x plen %d", eh->evt, eh->plen);
410 ll_check_data_len(ll, eh->plen);
411 continue;
413 case HCILL_W4_ACL_HDR:
414 ah = (struct hci_acl_hdr *) ll->rx_skb->data;
415 dlen = __le16_to_cpu(ah->dlen);
417 BT_DBG("ACL header: dlen %d", dlen);
419 ll_check_data_len(ll, dlen);
420 continue;
422 case HCILL_W4_SCO_HDR:
423 sh = (struct hci_sco_hdr *) ll->rx_skb->data;
425 BT_DBG("SCO header: dlen %d", sh->dlen);
427 ll_check_data_len(ll, sh->dlen);
428 continue;
432 /* HCILL_W4_PACKET_TYPE */
433 switch (*ptr) {
434 case HCI_EVENT_PKT:
435 BT_DBG("Event packet");
436 ll->rx_state = HCILL_W4_EVENT_HDR;
437 ll->rx_count = HCI_EVENT_HDR_SIZE;
438 type = HCI_EVENT_PKT;
439 break;
441 case HCI_ACLDATA_PKT:
442 BT_DBG("ACL packet");
443 ll->rx_state = HCILL_W4_ACL_HDR;
444 ll->rx_count = HCI_ACL_HDR_SIZE;
445 type = HCI_ACLDATA_PKT;
446 break;
448 case HCI_SCODATA_PKT:
449 BT_DBG("SCO packet");
450 ll->rx_state = HCILL_W4_SCO_HDR;
451 ll->rx_count = HCI_SCO_HDR_SIZE;
452 type = HCI_SCODATA_PKT;
453 break;
455 /* HCILL signals */
456 case HCILL_GO_TO_SLEEP_IND:
457 BT_DBG("HCILL_GO_TO_SLEEP_IND packet");
458 ll_device_want_to_sleep(hu);
459 ptr++; count--;
460 continue;
462 case HCILL_GO_TO_SLEEP_ACK:
463 /* shouldn't happen */
464 BT_ERR("received HCILL_GO_TO_SLEEP_ACK (in state %ld)", ll->hcill_state);
465 ptr++; count--;
466 continue;
468 case HCILL_WAKE_UP_IND:
469 BT_DBG("HCILL_WAKE_UP_IND packet");
470 ll_device_want_to_wakeup(hu);
471 ptr++; count--;
472 continue;
474 case HCILL_WAKE_UP_ACK:
475 BT_DBG("HCILL_WAKE_UP_ACK packet");
476 ll_device_woke_up(hu);
477 ptr++; count--;
478 continue;
480 default:
481 BT_ERR("Unknown HCI packet type %2.2x", (__u8)*ptr);
482 hu->hdev->stat.err_rx++;
483 ptr++; count--;
484 continue;
487 ptr++; count--;
489 /* Allocate packet */
490 ll->rx_skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC);
491 if (!ll->rx_skb) {
492 BT_ERR("Can't allocate mem for new packet");
493 ll->rx_state = HCILL_W4_PACKET_TYPE;
494 ll->rx_count = 0;
495 return 0;
498 ll->rx_skb->dev = (void *) hu->hdev;
499 bt_cb(ll->rx_skb)->pkt_type = type;
502 return count;
505 static struct sk_buff *ll_dequeue(struct hci_uart *hu)
507 struct ll_struct *ll = hu->priv;
508 return skb_dequeue(&ll->txq);
511 static struct hci_uart_proto llp = {
512 .id = HCI_UART_LL,
513 .open = ll_open,
514 .close = ll_close,
515 .recv = ll_recv,
516 .enqueue = ll_enqueue,
517 .dequeue = ll_dequeue,
518 .flush = ll_flush,
521 int ll_init(void)
523 int err = hci_uart_register_proto(&llp);
525 if (!err)
526 BT_INFO("HCILL protocol initialized");
527 else
528 BT_ERR("HCILL protocol registration failed");
530 return err;
533 int ll_deinit(void)
535 return hci_uart_unregister_proto(&llp);