[Bluetooth] Track status of remote Simple Pairing mode
[pandora-kernel.git] / include / net / bluetooth / hci_core.h
1 /* 
2    BlueZ - Bluetooth protocol stack for Linux
3    Copyright (C) 2000-2001 Qualcomm Incorporated
4
5    Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
6
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;
10
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.
19
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.
23 */
24
25 #ifndef __HCI_CORE_H
26 #define __HCI_CORE_H
27
28 #include <net/bluetooth/hci.h>
29
30 /* HCI upper protocols */
31 #define HCI_PROTO_L2CAP 0
32 #define HCI_PROTO_SCO   1
33
34 /* HCI Core structures */
35 struct inquiry_data {
36         bdaddr_t        bdaddr;
37         __u8            pscan_rep_mode;
38         __u8            pscan_period_mode;
39         __u8            pscan_mode;
40         __u8            dev_class[3];
41         __le16          clock_offset;
42         __s8            rssi;
43         __u8            ssp_mode;
44 };
45
46 struct inquiry_entry {
47         struct inquiry_entry    *next;
48         __u32                   timestamp;
49         struct inquiry_data     data;
50 };
51
52 struct inquiry_cache {
53         spinlock_t              lock;
54         __u32                   timestamp;
55         struct inquiry_entry    *list;
56 };
57
58 struct hci_conn_hash {
59         struct list_head list;
60         spinlock_t       lock;
61         unsigned int     acl_num;
62         unsigned int     sco_num;
63 };
64
65 struct hci_dev {
66         struct list_head list;
67         spinlock_t      lock;
68         atomic_t        refcnt;
69
70         char            name[8];
71         unsigned long   flags;
72         __u16           id;
73         __u8            type;
74         bdaddr_t        bdaddr;
75         __u8            dev_name[248];
76         __u8            dev_class[3];
77         __u8            features[8];
78         __u8            commands[64];
79         __u8            ssp_mode;
80         __u8            hci_ver;
81         __u16           hci_rev;
82         __u16           manufacturer;
83         __u16           voice_setting;
84
85         __u16           pkt_type;
86         __u16           esco_type;
87         __u16           link_policy;
88         __u16           link_mode;
89
90         __u32           idle_timeout;
91         __u16           sniff_min_interval;
92         __u16           sniff_max_interval;
93
94         unsigned long   quirks;
95
96         atomic_t        cmd_cnt;
97         unsigned int    acl_cnt;
98         unsigned int    sco_cnt;
99
100         unsigned int    acl_mtu;
101         unsigned int    sco_mtu;
102         unsigned int    acl_pkts;
103         unsigned int    sco_pkts;
104
105         unsigned long   cmd_last_tx;
106         unsigned long   acl_last_tx;
107         unsigned long   sco_last_tx;
108
109         struct tasklet_struct   cmd_task;
110         struct tasklet_struct   rx_task;
111         struct tasklet_struct   tx_task;
112
113         struct sk_buff_head     rx_q;
114         struct sk_buff_head     raw_q;
115         struct sk_buff_head     cmd_q;
116
117         struct sk_buff          *sent_cmd;
118         struct sk_buff          *reassembly[3];
119
120         struct semaphore        req_lock;
121         wait_queue_head_t       req_wait_q;
122         __u32                   req_status;
123         __u32                   req_result;
124
125         struct inquiry_cache    inq_cache;
126         struct hci_conn_hash    conn_hash;
127
128         struct hci_dev_stats    stat;
129
130         struct sk_buff_head     driver_init;
131
132         void                    *driver_data;
133         void                    *core_data;
134
135         atomic_t                promisc;
136
137         struct device           *parent;
138         struct device           dev;
139
140         struct module           *owner;
141
142         int (*open)(struct hci_dev *hdev);
143         int (*close)(struct hci_dev *hdev);
144         int (*flush)(struct hci_dev *hdev);
145         int (*send)(struct sk_buff *skb);
146         void (*destruct)(struct hci_dev *hdev);
147         void (*notify)(struct hci_dev *hdev, unsigned int evt);
148         int (*ioctl)(struct hci_dev *hdev, unsigned int cmd, unsigned long arg);
149 };
150
151 struct hci_conn {
152         struct list_head list;
153
154         atomic_t         refcnt;
155         spinlock_t       lock;
156
157         bdaddr_t         dst;
158         __u16            handle;
159         __u16            state;
160         __u8             mode;
161         __u8             type;
162         __u8             out;
163         __u8             attempt;
164         __u8             dev_class[3];
165         __u8             features[8];
166         __u8             ssp_mode;
167         __u16            interval;
168         __u16            pkt_type;
169         __u16            link_policy;
170         __u32            link_mode;
171         __u8             power_save;
172         unsigned long    pend;
173
174         unsigned int     sent;
175
176         struct sk_buff_head data_q;
177
178         struct timer_list disc_timer;
179         struct timer_list idle_timer;
180
181         struct work_struct work;
182
183         struct device   dev;
184
185         struct hci_dev  *hdev;
186         void            *l2cap_data;
187         void            *sco_data;
188         void            *priv;
189
190         struct hci_conn *link;
191 };
192
193 extern struct hci_proto *hci_proto[];
194 extern struct list_head hci_dev_list;
195 extern struct list_head hci_cb_list;
196 extern rwlock_t hci_dev_list_lock;
197 extern rwlock_t hci_cb_list_lock;
198
199 /* ----- Inquiry cache ----- */
200 #define INQUIRY_CACHE_AGE_MAX   (HZ*30)   // 30 seconds
201 #define INQUIRY_ENTRY_AGE_MAX   (HZ*60)   // 60 seconds
202
203 #define inquiry_cache_lock(c)           spin_lock(&c->lock)
204 #define inquiry_cache_unlock(c)         spin_unlock(&c->lock)
205 #define inquiry_cache_lock_bh(c)        spin_lock_bh(&c->lock)
206 #define inquiry_cache_unlock_bh(c)      spin_unlock_bh(&c->lock)
207
208 static inline void inquiry_cache_init(struct hci_dev *hdev)
209 {
210         struct inquiry_cache *c = &hdev->inq_cache;
211         spin_lock_init(&c->lock);
212         c->list = NULL;
213 }
214
215 static inline int inquiry_cache_empty(struct hci_dev *hdev)
216 {
217         struct inquiry_cache *c = &hdev->inq_cache;
218         return (c->list == NULL);
219 }
220
221 static inline long inquiry_cache_age(struct hci_dev *hdev)
222 {
223         struct inquiry_cache *c = &hdev->inq_cache;
224         return jiffies - c->timestamp;
225 }
226
227 static inline long inquiry_entry_age(struct inquiry_entry *e)
228 {
229         return jiffies - e->timestamp;
230 }
231
232 struct inquiry_entry *hci_inquiry_cache_lookup(struct hci_dev *hdev, bdaddr_t *bdaddr);
233 void hci_inquiry_cache_update(struct hci_dev *hdev, struct inquiry_data *data);
234
235 /* ----- HCI Connections ----- */
236 enum {
237         HCI_CONN_AUTH_PEND,
238         HCI_CONN_ENCRYPT_PEND,
239         HCI_CONN_RSWITCH_PEND,
240         HCI_CONN_MODE_CHANGE_PEND,
241 };
242
243 static inline void hci_conn_hash_init(struct hci_dev *hdev)
244 {
245         struct hci_conn_hash *h = &hdev->conn_hash;
246         INIT_LIST_HEAD(&h->list);
247         spin_lock_init(&h->lock);
248         h->acl_num = 0;
249         h->sco_num = 0;
250 }
251
252 static inline void hci_conn_hash_add(struct hci_dev *hdev, struct hci_conn *c)
253 {
254         struct hci_conn_hash *h = &hdev->conn_hash;
255         list_add(&c->list, &h->list);
256         if (c->type == ACL_LINK)
257                 h->acl_num++;
258         else
259                 h->sco_num++;
260 }
261
262 static inline void hci_conn_hash_del(struct hci_dev *hdev, struct hci_conn *c)
263 {
264         struct hci_conn_hash *h = &hdev->conn_hash;
265         list_del(&c->list);
266         if (c->type == ACL_LINK)
267                 h->acl_num--;
268         else
269                 h->sco_num--;
270 }
271
272 static inline struct hci_conn *hci_conn_hash_lookup_handle(struct hci_dev *hdev,
273                                         __u16 handle)
274 {
275         struct hci_conn_hash *h = &hdev->conn_hash;
276         struct list_head *p;
277         struct hci_conn  *c;
278
279         list_for_each(p, &h->list) {
280                 c = list_entry(p, struct hci_conn, list);
281                 if (c->handle == handle)
282                         return c;
283         }
284         return NULL;
285 }
286
287 static inline struct hci_conn *hci_conn_hash_lookup_ba(struct hci_dev *hdev,
288                                         __u8 type, bdaddr_t *ba)
289 {
290         struct hci_conn_hash *h = &hdev->conn_hash;
291         struct list_head *p;
292         struct hci_conn  *c;
293
294         list_for_each(p, &h->list) {
295                 c = list_entry(p, struct hci_conn, list);
296                 if (c->type == type && !bacmp(&c->dst, ba))
297                         return c;
298         }
299         return NULL;
300 }
301
302 static inline struct hci_conn *hci_conn_hash_lookup_state(struct hci_dev *hdev,
303                                         __u8 type, __u16 state)
304 {
305         struct hci_conn_hash *h = &hdev->conn_hash;
306         struct list_head *p;
307         struct hci_conn  *c;
308
309         list_for_each(p, &h->list) {
310                 c = list_entry(p, struct hci_conn, list);
311                 if (c->type == type && c->state == state)
312                         return c;
313         }
314         return NULL;
315 }
316
317 void hci_acl_connect(struct hci_conn *conn);
318 void hci_acl_disconn(struct hci_conn *conn, __u8 reason);
319 void hci_add_sco(struct hci_conn *conn, __u16 handle);
320 void hci_setup_sync(struct hci_conn *conn, __u16 handle);
321
322 struct hci_conn *hci_conn_add(struct hci_dev *hdev, int type, bdaddr_t *dst);
323 int hci_conn_del(struct hci_conn *conn);
324 void hci_conn_hash_flush(struct hci_dev *hdev);
325 void hci_conn_check_pending(struct hci_dev *hdev);
326
327 struct hci_conn *hci_connect(struct hci_dev *hdev, int type, bdaddr_t *src);
328 int hci_conn_auth(struct hci_conn *conn);
329 int hci_conn_encrypt(struct hci_conn *conn);
330 int hci_conn_change_link_key(struct hci_conn *conn);
331 int hci_conn_switch_role(struct hci_conn *conn, uint8_t role);
332
333 void hci_conn_enter_active_mode(struct hci_conn *conn);
334 void hci_conn_enter_sniff_mode(struct hci_conn *conn);
335
336 static inline void hci_conn_hold(struct hci_conn *conn)
337 {
338         atomic_inc(&conn->refcnt);
339         del_timer(&conn->disc_timer);
340 }
341
342 static inline void hci_conn_put(struct hci_conn *conn)
343 {
344         if (atomic_dec_and_test(&conn->refcnt)) {
345                 unsigned long timeo;
346                 if (conn->type == ACL_LINK) {
347                         del_timer(&conn->idle_timer);
348                         if (conn->state == BT_CONNECTED) {
349                                 timeo = msecs_to_jiffies(HCI_DISCONN_TIMEOUT);
350                                 if (!conn->out)
351                                         timeo *= 2;
352                         } else
353                                 timeo = msecs_to_jiffies(10);
354                 } else
355                         timeo = msecs_to_jiffies(10);
356                 mod_timer(&conn->disc_timer, jiffies + timeo);
357         }
358 }
359
360 /* ----- HCI tasks ----- */
361 static inline void hci_sched_cmd(struct hci_dev *hdev)
362 {
363         tasklet_schedule(&hdev->cmd_task);
364 }
365
366 static inline void hci_sched_rx(struct hci_dev *hdev)
367 {
368         tasklet_schedule(&hdev->rx_task);
369 }
370
371 static inline void hci_sched_tx(struct hci_dev *hdev)
372 {
373         tasklet_schedule(&hdev->tx_task);
374 }
375
376 /* ----- HCI Devices ----- */
377 static inline void __hci_dev_put(struct hci_dev *d)
378 {
379         if (atomic_dec_and_test(&d->refcnt))
380                 d->destruct(d);
381 }
382
383 static inline void hci_dev_put(struct hci_dev *d)
384
385         __hci_dev_put(d);
386         module_put(d->owner);
387 }
388
389 static inline struct hci_dev *__hci_dev_hold(struct hci_dev *d)
390 {
391         atomic_inc(&d->refcnt);
392         return d;
393 }
394
395 static inline struct hci_dev *hci_dev_hold(struct hci_dev *d)
396 {
397         if (try_module_get(d->owner))
398                 return __hci_dev_hold(d);
399         return NULL;
400 }
401
402 #define hci_dev_lock(d)         spin_lock(&d->lock)
403 #define hci_dev_unlock(d)       spin_unlock(&d->lock)
404 #define hci_dev_lock_bh(d)      spin_lock_bh(&d->lock)
405 #define hci_dev_unlock_bh(d)    spin_unlock_bh(&d->lock)
406
407 struct hci_dev *hci_dev_get(int index);
408 struct hci_dev *hci_get_route(bdaddr_t *src, bdaddr_t *dst);
409
410 struct hci_dev *hci_alloc_dev(void);
411 void hci_free_dev(struct hci_dev *hdev);
412 int hci_register_dev(struct hci_dev *hdev);
413 int hci_unregister_dev(struct hci_dev *hdev);
414 int hci_suspend_dev(struct hci_dev *hdev);
415 int hci_resume_dev(struct hci_dev *hdev);
416 int hci_dev_open(__u16 dev);
417 int hci_dev_close(__u16 dev);
418 int hci_dev_reset(__u16 dev);
419 int hci_dev_reset_stat(__u16 dev);
420 int hci_dev_cmd(unsigned int cmd, void __user *arg);
421 int hci_get_dev_list(void __user *arg);
422 int hci_get_dev_info(void __user *arg);
423 int hci_get_conn_list(void __user *arg);
424 int hci_get_conn_info(struct hci_dev *hdev, void __user *arg);
425 int hci_inquiry(void __user *arg);
426
427 void hci_event_packet(struct hci_dev *hdev, struct sk_buff *skb);
428
429 /* Receive frame from HCI drivers */
430 static inline int hci_recv_frame(struct sk_buff *skb)
431 {
432         struct hci_dev *hdev = (struct hci_dev *) skb->dev;
433         if (!hdev || (!test_bit(HCI_UP, &hdev->flags) 
434                         && !test_bit(HCI_INIT, &hdev->flags))) {
435                 kfree_skb(skb);
436                 return -ENXIO;
437         }
438
439         /* Incomming skb */
440         bt_cb(skb)->incoming = 1;
441
442         /* Time stamp */
443         __net_timestamp(skb);
444
445         /* Queue frame for rx task */
446         skb_queue_tail(&hdev->rx_q, skb);
447         hci_sched_rx(hdev);
448         return 0;
449 }
450
451 int hci_recv_fragment(struct hci_dev *hdev, int type, void *data, int count);
452
453 int hci_register_sysfs(struct hci_dev *hdev);
454 void hci_unregister_sysfs(struct hci_dev *hdev);
455 void hci_conn_add_sysfs(struct hci_conn *conn);
456 void hci_conn_del_sysfs(struct hci_conn *conn);
457
458 #define SET_HCIDEV_DEV(hdev, pdev) ((hdev)->parent = (pdev))
459
460 /* ----- LMP capabilities ----- */
461 #define lmp_rswitch_capable(dev)   ((dev)->features[0] & LMP_RSWITCH)
462 #define lmp_encrypt_capable(dev)   ((dev)->features[0] & LMP_ENCRYPT)
463 #define lmp_sniff_capable(dev)     ((dev)->features[0] & LMP_SNIFF)
464 #define lmp_sniffsubr_capable(dev) ((dev)->features[5] & LMP_SNIFF_SUBR)
465 #define lmp_esco_capable(dev)      ((dev)->features[3] & LMP_ESCO)
466
467 /* ----- HCI protocols ----- */
468 struct hci_proto {
469         char            *name;
470         unsigned int    id;
471         unsigned long   flags;
472
473         void            *priv;
474
475         int (*connect_ind)      (struct hci_dev *hdev, bdaddr_t *bdaddr, __u8 type);
476         int (*connect_cfm)      (struct hci_conn *conn, __u8 status);
477         int (*disconn_ind)      (struct hci_conn *conn, __u8 reason);
478         int (*recv_acldata)     (struct hci_conn *conn, struct sk_buff *skb, __u16 flags);
479         int (*recv_scodata)     (struct hci_conn *conn, struct sk_buff *skb);
480         int (*auth_cfm)         (struct hci_conn *conn, __u8 status);
481         int (*encrypt_cfm)      (struct hci_conn *conn, __u8 status, __u8 encrypt);
482 };
483
484 static inline int hci_proto_connect_ind(struct hci_dev *hdev, bdaddr_t *bdaddr, __u8 type)
485 {
486         register struct hci_proto *hp;
487         int mask = 0;
488         
489         hp = hci_proto[HCI_PROTO_L2CAP];
490         if (hp && hp->connect_ind)
491                 mask |= hp->connect_ind(hdev, bdaddr, type);
492
493         hp = hci_proto[HCI_PROTO_SCO];
494         if (hp && hp->connect_ind)
495                 mask |= hp->connect_ind(hdev, bdaddr, type);
496
497         return mask;
498 }
499
500 static inline void hci_proto_connect_cfm(struct hci_conn *conn, __u8 status)
501 {
502         register struct hci_proto *hp;
503
504         hp = hci_proto[HCI_PROTO_L2CAP];
505         if (hp && hp->connect_cfm)
506                 hp->connect_cfm(conn, status);
507
508         hp = hci_proto[HCI_PROTO_SCO];
509         if (hp && hp->connect_cfm)
510                 hp->connect_cfm(conn, status);
511 }
512
513 static inline void hci_proto_disconn_ind(struct hci_conn *conn, __u8 reason)
514 {
515         register struct hci_proto *hp;
516
517         hp = hci_proto[HCI_PROTO_L2CAP];
518         if (hp && hp->disconn_ind)
519                 hp->disconn_ind(conn, reason);
520
521         hp = hci_proto[HCI_PROTO_SCO];
522         if (hp && hp->disconn_ind)
523                 hp->disconn_ind(conn, reason);
524 }
525
526 static inline void hci_proto_auth_cfm(struct hci_conn *conn, __u8 status)
527 {
528         register struct hci_proto *hp;
529
530         hp = hci_proto[HCI_PROTO_L2CAP];
531         if (hp && hp->auth_cfm)
532                 hp->auth_cfm(conn, status);
533
534         hp = hci_proto[HCI_PROTO_SCO];
535         if (hp && hp->auth_cfm)
536                 hp->auth_cfm(conn, status);
537 }
538
539 static inline void hci_proto_encrypt_cfm(struct hci_conn *conn, __u8 status, __u8 encrypt)
540 {
541         register struct hci_proto *hp;
542
543         hp = hci_proto[HCI_PROTO_L2CAP];
544         if (hp && hp->encrypt_cfm)
545                 hp->encrypt_cfm(conn, status, encrypt);
546
547         hp = hci_proto[HCI_PROTO_SCO];
548         if (hp && hp->encrypt_cfm)
549                 hp->encrypt_cfm(conn, status, encrypt);
550 }
551
552 int hci_register_proto(struct hci_proto *hproto);
553 int hci_unregister_proto(struct hci_proto *hproto);
554
555 /* ----- HCI callbacks ----- */
556 struct hci_cb {
557         struct list_head list;
558
559         char *name;
560
561         void (*auth_cfm)        (struct hci_conn *conn, __u8 status);
562         void (*encrypt_cfm)     (struct hci_conn *conn, __u8 status, __u8 encrypt);
563         void (*key_change_cfm)  (struct hci_conn *conn, __u8 status);
564         void (*role_switch_cfm) (struct hci_conn *conn, __u8 status, __u8 role);
565 };
566
567 static inline void hci_auth_cfm(struct hci_conn *conn, __u8 status)
568 {
569         struct list_head *p;
570
571         hci_proto_auth_cfm(conn, status);
572
573         read_lock_bh(&hci_cb_list_lock);
574         list_for_each(p, &hci_cb_list) {
575                 struct hci_cb *cb = list_entry(p, struct hci_cb, list);
576                 if (cb->auth_cfm)
577                         cb->auth_cfm(conn, status);
578         }
579         read_unlock_bh(&hci_cb_list_lock);
580 }
581
582 static inline void hci_encrypt_cfm(struct hci_conn *conn, __u8 status, __u8 encrypt)
583 {
584         struct list_head *p;
585
586         hci_proto_encrypt_cfm(conn, status, encrypt);
587
588         read_lock_bh(&hci_cb_list_lock);
589         list_for_each(p, &hci_cb_list) {
590                 struct hci_cb *cb = list_entry(p, struct hci_cb, list);
591                 if (cb->encrypt_cfm)
592                         cb->encrypt_cfm(conn, status, encrypt);
593         }
594         read_unlock_bh(&hci_cb_list_lock);
595 }
596
597 static inline void hci_key_change_cfm(struct hci_conn *conn, __u8 status)
598 {
599         struct list_head *p;
600
601         read_lock_bh(&hci_cb_list_lock);
602         list_for_each(p, &hci_cb_list) {
603                 struct hci_cb *cb = list_entry(p, struct hci_cb, list);
604                 if (cb->key_change_cfm)
605                         cb->key_change_cfm(conn, status);
606         }
607         read_unlock_bh(&hci_cb_list_lock);
608 }
609
610 static inline void hci_role_switch_cfm(struct hci_conn *conn, __u8 status, __u8 role)
611 {
612         struct list_head *p;
613
614         read_lock_bh(&hci_cb_list_lock);
615         list_for_each(p, &hci_cb_list) {
616                 struct hci_cb *cb = list_entry(p, struct hci_cb, list);
617                 if (cb->role_switch_cfm)
618                         cb->role_switch_cfm(conn, status, role);
619         }
620         read_unlock_bh(&hci_cb_list_lock);
621 }
622
623 int hci_register_cb(struct hci_cb *hcb);
624 int hci_unregister_cb(struct hci_cb *hcb);
625
626 int hci_register_notifier(struct notifier_block *nb);
627 int hci_unregister_notifier(struct notifier_block *nb);
628
629 int hci_send_cmd(struct hci_dev *hdev, __u16 opcode, __u32 plen, void *param);
630 int hci_send_acl(struct hci_conn *conn, struct sk_buff *skb, __u16 flags);
631 int hci_send_sco(struct hci_conn *conn, struct sk_buff *skb);
632
633 void *hci_sent_cmd_data(struct hci_dev *hdev, __u16 opcode);
634
635 void hci_si_event(struct hci_dev *hdev, int type, int dlen, void *data);
636
637 /* ----- HCI Sockets ----- */
638 void hci_send_to_sock(struct hci_dev *hdev, struct sk_buff *skb);
639
640 /* HCI info for socket */
641 #define hci_pi(sk) ((struct hci_pinfo *) sk)
642
643 struct hci_pinfo {
644         struct bt_sock    bt;
645         struct hci_dev    *hdev;
646         struct hci_filter filter;
647         __u32             cmsg_mask;
648 };
649
650 /* HCI security filter */
651 #define HCI_SFLT_MAX_OGF  5
652
653 struct hci_sec_filter {
654         __u32 type_mask;
655         __u32 event_mask[2];
656         __u32 ocf_mask[HCI_SFLT_MAX_OGF + 1][4];
657 };
658
659 /* ----- HCI requests ----- */
660 #define HCI_REQ_DONE      0
661 #define HCI_REQ_PEND      1
662 #define HCI_REQ_CANCELED  2
663
664 #define hci_req_lock(d)         down(&d->req_lock)
665 #define hci_req_unlock(d)       up(&d->req_lock)
666
667 void hci_req_complete(struct hci_dev *hdev, int result);
668
669 #endif /* __HCI_CORE_H */