2 BlueZ - Bluetooth protocol stack for Linux
3 Copyright (C) 2000-2001 Qualcomm Incorporated
5 Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License version 2 as
9 published by the Free Software Foundation;
11 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
12 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
14 IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
15 CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
16 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
21 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
22 SOFTWARE IS DISCLAIMED.
26 * Bluetooth HCI UART(H4) protocol.
28 * $Id: hci_h4.c,v 1.3 2002/09/09 01:17:32 maxk Exp $
32 #include <linux/config.h>
33 #include <linux/module.h>
35 #include <linux/kernel.h>
36 #include <linux/init.h>
37 #include <linux/sched.h>
38 #include <linux/types.h>
39 #include <linux/fcntl.h>
40 #include <linux/interrupt.h>
41 #include <linux/ptrace.h>
42 #include <linux/poll.h>
44 #include <linux/slab.h>
45 #include <linux/tty.h>
46 #include <linux/errno.h>
47 #include <linux/string.h>
48 #include <linux/signal.h>
49 #include <linux/ioctl.h>
50 #include <linux/skbuff.h>
52 #include <net/bluetooth/bluetooth.h>
53 #include <net/bluetooth/hci_core.h>
57 #ifndef CONFIG_BT_HCIUART_DEBUG
59 #define BT_DBG( A... )
61 #define BT_DMP( A... )
64 /* Initialize protocol */
65 static int h4_open(struct hci_uart
*hu
)
71 h4
= kmalloc(sizeof(*h4
), GFP_ATOMIC
);
74 memset(h4
, 0, sizeof(*h4
));
76 skb_queue_head_init(&h4
->txq
);
82 /* Flush protocol data */
83 static int h4_flush(struct hci_uart
*hu
)
85 struct h4_struct
*h4
= hu
->priv
;
88 skb_queue_purge(&h4
->txq
);
93 static int h4_close(struct hci_uart
*hu
)
95 struct h4_struct
*h4
= hu
->priv
;
100 skb_queue_purge(&h4
->txq
);
102 kfree_skb(h4
->rx_skb
);
109 /* Enqueue frame for transmittion (padding, crc, etc) */
110 static int h4_enqueue(struct hci_uart
*hu
, struct sk_buff
*skb
)
112 struct h4_struct
*h4
= hu
->priv
;
114 BT_DBG("hu %p skb %p", hu
, skb
);
116 /* Prepend skb with frame type */
117 memcpy(skb_push(skb
, 1), &skb
->pkt_type
, 1);
118 skb_queue_tail(&h4
->txq
, skb
);
122 static inline int h4_check_data_len(struct h4_struct
*h4
, int len
)
124 register int room
= skb_tailroom(h4
->rx_skb
);
126 BT_DBG("len %d room %d", len
, room
);
128 BT_DMP(h4
->rx_skb
->data
, h4
->rx_skb
->len
);
129 hci_recv_frame(h4
->rx_skb
);
130 } else if (len
> room
) {
131 BT_ERR("Data length is too large");
132 kfree_skb(h4
->rx_skb
);
134 h4
->rx_state
= H4_W4_DATA
;
139 h4
->rx_state
= H4_W4_PACKET_TYPE
;
146 static int h4_recv(struct hci_uart
*hu
, void *data
, int count
)
148 struct h4_struct
*h4
= hu
->priv
;
150 struct hci_event_hdr
*eh
;
151 struct hci_acl_hdr
*ah
;
152 struct hci_sco_hdr
*sh
;
153 register int len
, type
, dlen
;
155 BT_DBG("hu %p count %d rx_state %ld rx_count %ld",
156 hu
, count
, h4
->rx_state
, h4
->rx_count
);
161 len
= min_t(unsigned int, h4
->rx_count
, count
);
162 memcpy(skb_put(h4
->rx_skb
, len
), ptr
, len
);
163 h4
->rx_count
-= len
; count
-= len
; ptr
+= len
;
168 switch (h4
->rx_state
) {
170 BT_DBG("Complete data");
172 BT_DMP(h4
->rx_skb
->data
, h4
->rx_skb
->len
);
174 hci_recv_frame(h4
->rx_skb
);
176 h4
->rx_state
= H4_W4_PACKET_TYPE
;
180 case H4_W4_EVENT_HDR
:
181 eh
= (struct hci_event_hdr
*) h4
->rx_skb
->data
;
183 BT_DBG("Event header: evt 0x%2.2x plen %d", eh
->evt
, eh
->plen
);
185 h4_check_data_len(h4
, eh
->plen
);
189 ah
= (struct hci_acl_hdr
*) h4
->rx_skb
->data
;
190 dlen
= __le16_to_cpu(ah
->dlen
);
192 BT_DBG("ACL header: dlen %d", dlen
);
194 h4_check_data_len(h4
, dlen
);
198 sh
= (struct hci_sco_hdr
*) h4
->rx_skb
->data
;
200 BT_DBG("SCO header: dlen %d", sh
->dlen
);
202 h4_check_data_len(h4
, sh
->dlen
);
207 /* H4_W4_PACKET_TYPE */
210 BT_DBG("Event packet");
211 h4
->rx_state
= H4_W4_EVENT_HDR
;
212 h4
->rx_count
= HCI_EVENT_HDR_SIZE
;
213 type
= HCI_EVENT_PKT
;
216 case HCI_ACLDATA_PKT
:
217 BT_DBG("ACL packet");
218 h4
->rx_state
= H4_W4_ACL_HDR
;
219 h4
->rx_count
= HCI_ACL_HDR_SIZE
;
220 type
= HCI_ACLDATA_PKT
;
223 case HCI_SCODATA_PKT
:
224 BT_DBG("SCO packet");
225 h4
->rx_state
= H4_W4_SCO_HDR
;
226 h4
->rx_count
= HCI_SCO_HDR_SIZE
;
227 type
= HCI_SCODATA_PKT
;
231 BT_ERR("Unknown HCI packet type %2.2x", (__u8
)*ptr
);
232 hu
->hdev
->stat
.err_rx
++;
238 /* Allocate packet */
239 h4
->rx_skb
= bt_skb_alloc(HCI_MAX_FRAME_SIZE
, GFP_ATOMIC
);
241 BT_ERR("Can't allocate mem for new packet");
242 h4
->rx_state
= H4_W4_PACKET_TYPE
;
246 h4
->rx_skb
->dev
= (void *) hu
->hdev
;
247 h4
->rx_skb
->pkt_type
= type
;
252 static struct sk_buff
*h4_dequeue(struct hci_uart
*hu
)
254 struct h4_struct
*h4
= hu
->priv
;
255 return skb_dequeue(&h4
->txq
);
258 static struct hci_uart_proto h4p
= {
263 .enqueue
= h4_enqueue
,
264 .dequeue
= h4_dequeue
,
270 int err
= hci_uart_register_proto(&h4p
);
272 BT_INFO("HCI H4 protocol initialized");
274 BT_ERR("HCI H4 protocol registration failed");
281 return hci_uart_unregister_proto(&h4p
);