hci_usb.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* 
  2.    BlueZ - Bluetooth protocol stack for Linux
  3.    Copyright (C) 2000-2001 Qualcomm Incorporated
  4.    Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
  5.    This program is free software; you can redistribute it and/or modify
  6.    it under the terms of the GNU General Public License version 2 as
  7.    published by the Free Software Foundation;
  8.    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  9.    OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  10.    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
  11.    IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
  12.    CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES 
  13.    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 
  14.    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 
  15.    OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  16.    ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS, 
  17.    COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS 
  18.    SOFTWARE IS DISCLAIMED.
  19. */
  20. /*
  21.  * $Id: hci_usb.h,v 1.3 2001/06/02 01:40:08 maxk Exp $
  22.  */
  23. #ifdef __KERNEL__
  24. /* Class, SubClass, and Protocol codes that describe a Bluetooth device */
  25. #define HCI_DEV_CLASS        0xe0 /* Wireless class */
  26. #define HCI_DEV_SUBCLASS     0x01 /* RF subclass */
  27. #define HCI_DEV_PROTOCOL     0x01 /* Bluetooth programming protocol */
  28. #define HCI_CTRL_REQ      0x20
  29. struct hci_usb {
  30. struct usb_device  *udev;
  31. devrequest dev_req;
  32. struct urb  *ctrl_urb;
  33. struct urb *intr_urb;
  34. struct urb *read_urb;
  35. struct urb *write_urb;
  36. __u8 *read_buf;
  37. __u8 *intr_buf;
  38. struct sk_buff *intr_skb;
  39. int intr_count;
  40. __u8 bulk_out_ep_addr;
  41. __u8 bulk_in_ep_addr;
  42. __u8 intr_in_ep_addr;
  43. __u8 intr_in_interval;
  44. struct hci_dev hdev;
  45. unsigned long tx_state;
  46. struct sk_buff_head tx_ctrl_q;
  47. struct sk_buff_head tx_write_q;
  48. };
  49. /* Transmit states  */
  50. #define HCI_TX_CTRL 1
  51. #define HCI_TX_WRITE 2
  52. #endif /* __KERNEL__ */