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

嵌入式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.h,v 1.15 2001/08/05 06:02:15 maxk Exp $
  22.  */
  23. #ifndef __HCI_H
  24. #define __HCI_H
  25. #include <asm/byteorder.h>
  26. #define HCI_MAX_DEV  8
  27. #define HCI_MAX_FRAME_SIZE 2048
  28. /* HCI dev events */
  29. #define HCI_DEV_REG 1
  30. #define HCI_DEV_UNREG   2
  31. #define HCI_DEV_UP 3
  32. #define HCI_DEV_DOWN 4
  33. /* HCI device types */
  34. #define HCI_UART  0
  35. #define HCI_USB 1
  36. #define HCI_VHCI 2
  37. /* HCI device modes */
  38. #define HCI_NORMAL  0x0001
  39. #define HCI_RAW 0x0002
  40. #define HCI_MODE_MASK   (HCI_NORMAL | HCI_RAW)
  41. #define HCI_SOCK 0x1000
  42. /* HCI device states */
  43. #define HCI_INIT 0x0010
  44. #define HCI_UP  0x0020
  45. #define HCI_RUNNING 0x0040
  46. /* HCI device flags */
  47. #define HCI_PSCAN 0x0100
  48. #define HCI_ISCAN 0x0200
  49. #define HCI_AUTH 0x0400
  50. /* HCI Ioctl defines */
  51. #define HCIDEVUP        _IOW('H', 201, int)
  52. #define HCIDEVDOWN      _IOW('H', 202, int)
  53. #define HCIDEVRESET     _IOW('H', 203, int)
  54. #define HCIRESETSTAT    _IOW('H', 204, int)
  55. #define HCIGETINFO      _IOR('H', 205, int)
  56. #define HCIGETDEVLIST   _IOR('H', 206, int)
  57. #define HCISETRAW       _IOW('H', 207, int)
  58. #define HCISETSCAN      _IOW('H', 208, int)
  59. #define HCISETAUTH      _IOW('H', 209, int)
  60. #define HCIINQUIRY      _IOR('H', 210, int)
  61. #define HCISETPTYPE     _IOW('H', 211, int)
  62. #define HCIGETCONNLIST  _IOR('H', 212, int)
  63. #ifndef __NO_HCI_DEFS
  64. /* HCI Packet types */
  65. #define HCI_COMMAND_PKT 0x01
  66. #define HCI_ACLDATA_PKT  0x02
  67. #define HCI_SCODATA_PKT  0x03
  68. #define HCI_EVENT_PKT 0x04
  69. #define HCI_UNKNOWN_PKT 0xff
  70. /* HCI Packet types */
  71. #define HCI_DM1  0x0008
  72. #define HCI_DM3  0x0400
  73. #define HCI_DM5  0x4000
  74. #define HCI_DH1  0x0010
  75. #define HCI_DH3  0x0800
  76. #define HCI_DH5  0x8000
  77. /* ACL flags */
  78. #define ACL_CONT 0x0001
  79. #define ACL_START 0x0002
  80. #define ACL_ACTIVE_BCAST 0x0010
  81. #define ACL_PICO_BCAST 0x0020
  82. /* Baseband links */
  83. #define SCO_LINK 0x00
  84. #define ACL_LINK 0x01
  85. /* LMP features */
  86. #define LMP_3SLOT 0x01
  87. #define LMP_5SLOT 0x02
  88. #define LMP_ENCRYPT 0x04
  89. #define LMP_SOFFSET 0x08
  90. #define LMP_TACCURACY 0x10
  91. #define LMP_RSWITCH 0x20
  92. #define LMP_HOLD 0x40
  93. #define LMP_SNIF 0x80
  94. #define LMP_PARK 0x01
  95. #define LMP_RSSI 0x02
  96. #define LMP_QUALITY 0x04
  97. #define LMP_SCO 0x08
  98. #define LMP_HV2 0x10
  99. #define LMP_HV3 0x20
  100. #define LMP_ULAW 0x40
  101. #define LMP_ALAW 0x80
  102. #define LMP_CVSD 0x01
  103. #define LMP_PSCHEME 0x02
  104. #define LMP_PCONTROL 0x04
  105. /* -----  HCI Commands ----- */
  106. /* OGF & OCF values */
  107. /* Informational Parameters */
  108. #define OGF_INFO_PARAM 0x04
  109. #define OCF_READ_LOCAL_VERSION 0x0001
  110. typedef struct {
  111. __u8  status;
  112. __u8  hci_ver;
  113. __u16 hci_rev;
  114. __u8  lmp_ver;
  115. __u16 man_name;
  116. __u16 lmp_sub;
  117. } __attribute__ ((packed)) read_local_version_rp;
  118. #define OCF_READ_LOCAL_FEATURES 0x0003
  119. typedef struct {
  120. __u8 status;
  121. __u8 features[8];
  122. } __attribute__ ((packed)) read_local_features_rp;
  123. #define OCF_READ_BUFFER_SIZE 0x0005
  124. typedef struct {
  125. __u8  status;
  126. __u16  acl_mtu;
  127. __u8  sco_mtu;
  128. __u16  acl_max_pkt;
  129. __u16 sco_max_pkt;
  130. } __attribute__ ((packed)) read_buffer_size_rp;
  131. #define OCF_READ_BD_ADDR 0x0009
  132. typedef struct {
  133. __u8 status;
  134. bdaddr_t bdaddr;
  135. } __attribute__ ((packed)) read_bd_addr_rp;
  136. /* Host Controller and Baseband */
  137. #define OGF_HOST_CTL 0x03
  138. #define OCF_RESET 0x0003
  139. #define OCF_WRITE_AUTH_ENABLE 0x0020
  140. #define AUTH_DISABLED 0x00
  141. #define AUTH_ENABLED 0x01
  142. #define OCF_WRITE_CA_TIMEOUT   0x0016
  143. #define OCF_WRITE_PG_TIMEOUT   0x0018
  144. #define OCF_WRITE_SCAN_ENABLE  0x001A
  145. #define SCANS_DISABLED 0x00
  146. #define IS_ENA_PS_DIS 0x01
  147. #define IS_DIS_PS_ENA 0x02
  148. #define IS_ENA_PS_ENA 0x03
  149. #define OCF_SET_EVENT_FLT 0x0005
  150. typedef struct {
  151. __u8  flt_type;
  152. __u8  cond_type;
  153. __u8  condition[0];
  154. } __attribute__ ((packed)) set_event_flt_cp;
  155. #define SET_EVENT_FLT_CP_SIZE 2
  156. /* Filter types */
  157. #define FLT_CLEAR_ALL 0x00
  158. #define FLT_INQ_RESULT 0x01
  159. #define FLT_CONN_SETUP 0x02
  160. /* CONN_SETUP Condition types */
  161. #define CONN_SETUP_ALLOW_ALL 0x00
  162. #define CONN_SETUP_ALLOW_CLASS 0x01
  163. #define CONN_SETUP_ALLOW_BDADDR 0x02
  164. /* CONN_SETUP Conditions */
  165. #define CONN_SETUP_AUTO_OFF 0x01
  166. #define CONN_SETUP_AUTO_ON 0x02
  167. #define OCF_CHANGE_LOCAL_NAME 0x0013
  168. typedef struct {
  169. __u8  name[248];
  170. } __attribute__ ((packed)) change_local_name_cp;
  171. #define CHANGE_LOCAL_NAME_CP_SIZE 248 
  172. #define OCF_READ_LOCAL_NAME 0x0014
  173. typedef struct {
  174. __u8 status;
  175. __u8  name[248];
  176. } __attribute__ ((packed)) read_local_name_rp;
  177. #define READ_LOCAL_NAME_RP_SIZE 249 
  178. #define OCF_READ_CLASS_OF_DEV 0x0023
  179. typedef struct {
  180. __u8 status;
  181. __u8  dev_class[3];
  182. } __attribute__ ((packed)) read_class_of_dev_rp;
  183. #define READ_CLASS_OF_DEV_RP_SIZE 4 
  184. #define OCF_WRITE_CLASS_OF_DEV 0x0024
  185. typedef struct {
  186. __u8  dev_class[3];
  187. } __attribute__ ((packed)) write_class_of_dev_cp;
  188. #define WRITE_CLASS_OF_DEV_CP_SIZE 3
  189. /* Link Control */
  190. #define OGF_LINK_CTL 0x01 
  191. #define OCF_CREATE_CONN 0x0005
  192. typedef struct {
  193. bdaddr_t bdaddr;
  194. __u16  pkt_type;
  195. __u8  pscan_rep_mode;
  196. __u8  pscan_mode;
  197. __u16  clock_offset;
  198. __u8  role_switch;
  199. } __attribute__ ((packed)) create_conn_cp;
  200. #define CREATE_CONN_CP_SIZE 13
  201. #define OCF_ACCEPT_CONN_REQ 0x0009
  202. typedef struct {
  203. bdaddr_t bdaddr;
  204. __u8  role;
  205. } __attribute__ ((packed)) accept_conn_req_cp;
  206. #define ACCEPT_CONN_REQ_CP_SIZE 7
  207. #define OCF_DISCONNECT 0x0006
  208. typedef struct {
  209. __u16  handle;
  210. __u8  reason;
  211. } __attribute__ ((packed)) disconnect_cp;
  212. #define DISCONNECT_CP_SIZE 3
  213. #define OCF_INQUIRY 0x0001
  214. typedef struct {
  215. __u8  lap[3];
  216. __u8  lenght;
  217. __u8 num_rsp;
  218. } __attribute__ ((packed)) inquiry_cp;
  219. #define INQUIRY_CP_SIZE 5
  220. #define OGF_LINK_POLICY   0x02   /* Link Policy */
  221. /* --------- HCI Events --------- */
  222. #define EVT_INQUIRY_COMPLETE  0x01
  223. #define EVT_INQUIRY_RESULT  0x02
  224. typedef struct {
  225. bdaddr_t bdaddr;
  226. __u8 pscan_rep_mode;
  227. __u8 pscan_period_mode;
  228. __u8 pscan_mode;
  229. __u8 class[3];
  230. __u16 clock_offset;
  231. } __attribute__ ((packed)) inquiry_info;
  232. #define INQUIRY_INFO_SIZE 14
  233. #define EVT_CONN_COMPLETE  0x03
  234. typedef struct {
  235. __u8 status;
  236. __u16 handle;
  237. bdaddr_t bdaddr;
  238. __u8 link_type;
  239. __u8 encr_mode;
  240. } __attribute__ ((packed)) evt_conn_complete;
  241. #define EVT_CONN_COMPLETE_SIZE 13
  242. #define EVT_CONN_REQUEST 0x04
  243. typedef struct {
  244. bdaddr_t  bdaddr;
  245. __u8  dev_class[3];
  246. __u8 link_type;
  247. } __attribute__ ((packed)) evt_conn_request;
  248. #define EVT_CONN_REQUEST_SIZE 10
  249. #define EVT_DISCONN_COMPLETE 0x05
  250. typedef struct {
  251. __u8  status;
  252. __u16  handle;
  253. __u8  reason;
  254. } __attribute__ ((packed)) evt_disconn_complete;
  255. #define EVT_DISCONN_COMPLETE_SIZE 4
  256. #define EVT_CMD_COMPLETE  0x0e
  257. typedef struct {
  258. __u8  ncmd;
  259. __u16  opcode;
  260. } __attribute__ ((packed)) evt_cmd_complete;
  261. #define EVT_CMD_COMPLETE_SIZE 3
  262. #define EVT_CMD_STATUS  0x0f
  263. typedef struct {
  264. __u8  status;
  265. __u8  ncmd;
  266. __u16  opcode;
  267. } __attribute__ ((packed)) evt_cmd_status;
  268. #define EVT_CMD_STATUS_SIZE 4
  269. #define EVT_NUM_COMP_PKTS 0x13
  270. typedef struct {
  271. __u8  num_hndl;
  272. /* variable lenght part */
  273. } __attribute__ ((packed)) evt_num_comp_pkts;
  274. #define EVT_NUM_COMP_PKTS_SIZE 1
  275. #define EVT_HCI_DEV_EVENT 0xfd
  276. typedef struct {
  277. __u16  event;
  278. __u16  param;
  279. } __attribute__ ((packed)) evt_hci_dev_event;
  280. #define EVT_HCI_DEV_EVENT_SIZE 4
  281. /* --------  HCI Packet structures  -------- */
  282. #define HCI_TYPE_LEN 1
  283. typedef struct {
  284. __u16  opcode; /* OCF & OGF */
  285. __u8  plen;
  286. } __attribute__ ((packed)) hci_command_hdr;
  287. #define HCI_COMMAND_HDR_SIZE  3
  288. typedef struct {
  289. __u8  evt;
  290. __u8  plen;
  291. } __attribute__ ((packed)) hci_event_hdr;
  292. #define HCI_EVENT_HDR_SIZE  2
  293. typedef struct {
  294. __u16  handle; /* Handle & Flags(PB, BC) */
  295. __u16  dlen;
  296. } __attribute__ ((packed)) hci_acl_hdr;
  297. #define HCI_ACL_HDR_SIZE  4
  298. typedef struct {
  299. __u16  handle;
  300. __u8  dlen;
  301. } __attribute__ ((packed)) hci_sco_hdr;
  302. #define HCI_SCO_HDR_SIZE  3
  303. /* Command opcode pack/unpack */
  304. #define cmd_opcode_pack(ogf, ocf) (__u16)((ocf & 0x03ff)|(ogf << 10))
  305. #define cmd_opcode_ogf(op) (op >> 10)
  306. #define cmd_opcode_ocf(op) (op & 0x03ff)
  307. /* ACL handle and flags pack/unpack */
  308. #define acl_handle_pack(h, f) (__u16)((h & 0x0fff)|(f << 12))
  309. #define acl_handle(h) (h & 0x0fff)
  310. #define acl_flags(h) (h >> 12)
  311. #endif /* _NO_HCI_DEFS */
  312. /* HCI Socket options */
  313. #define HCI_DATA_DIR 0x0001
  314. #define HCI_FILTER 0x0002
  315. /* HCI CMSG flags */
  316. #define HCI_CMSG_DIR 0x0001
  317. struct sockaddr_hci {
  318. sa_family_t    hci_family;
  319. unsigned short hci_dev;
  320. };
  321. #define HCI_DEV_NONE 0xffff
  322. struct hci_filter {
  323. __u32 type_mask;
  324. __u32 event_mask[2];
  325. };
  326. struct hci_dev_req {
  327. __u16 dev_id;
  328. __u32 dev_opt;
  329. };
  330. struct hci_dev_list_req {
  331. __u16  dev_num;
  332. struct hci_dev_req dev_req[0]; /* hci_dev_req structures */
  333. };
  334. struct hci_inquiry_req {
  335. __u16 dev_id;
  336. __u16 flags;
  337. __u8  lap[3];
  338. __u8  length;
  339. __u8  num_rsp;
  340. };
  341. #define IREQ_CACHE_FLUSH 0x0001
  342. struct hci_dev_stats {
  343. __u32 err_rx;
  344. __u32 err_tx;
  345. __u32 cmd_tx;
  346. __u32 evt_rx;
  347. __u32 acl_tx;
  348. __u32 acl_rx;
  349. __u32 sco_tx;
  350. __u32 sco_rx;
  351. __u32 byte_rx;
  352. __u32 byte_tx;
  353. };
  354. struct hci_dev_info {
  355. __u16 dev_id;
  356. char  name[8];
  357. bdaddr_t bdaddr;
  358. __u32 flags;
  359. __u8  type;
  360. __u8  features[8];
  361. __u32 pkt_type;
  362. __u16 acl_mtu;
  363. __u16 acl_max;
  364. __u16 sco_mtu;
  365. __u16 sco_max;
  366. struct hci_dev_stats stat;
  367. };
  368. struct hci_conn_info {
  369. __u16    handle;
  370. bdaddr_t bdaddr;
  371. };
  372. struct hci_conn_list_req {
  373. __u16  dev_id;
  374. __u16  conn_num;
  375. struct hci_conn_info conn_info[0];
  376. };
  377. #endif /* __HCI_H */