xref: /openbmc/linux/include/net/bluetooth/hci.h (revision 105721328f0fa53e772592eaca17ee0023f0cc87)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds    BlueZ - Bluetooth protocol stack for Linux
31da177e4SLinus Torvalds    Copyright (C) 2000-2001 Qualcomm Incorporated
41da177e4SLinus Torvalds 
51da177e4SLinus Torvalds    Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
61da177e4SLinus Torvalds 
71da177e4SLinus Torvalds    This program is free software; you can redistribute it and/or modify
81da177e4SLinus Torvalds    it under the terms of the GNU General Public License version 2 as
91da177e4SLinus Torvalds    published by the Free Software Foundation;
101da177e4SLinus Torvalds 
111da177e4SLinus Torvalds    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
121da177e4SLinus Torvalds    OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
131da177e4SLinus Torvalds    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
141da177e4SLinus Torvalds    IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
151da177e4SLinus Torvalds    CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
161da177e4SLinus Torvalds    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
171da177e4SLinus Torvalds    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
181da177e4SLinus Torvalds    OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
191da177e4SLinus Torvalds 
201da177e4SLinus Torvalds    ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
211da177e4SLinus Torvalds    COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
221da177e4SLinus Torvalds    SOFTWARE IS DISCLAIMED.
231da177e4SLinus Torvalds */
241da177e4SLinus Torvalds 
251da177e4SLinus Torvalds #ifndef __HCI_H
261da177e4SLinus Torvalds #define __HCI_H
271da177e4SLinus Torvalds 
281da177e4SLinus Torvalds #define HCI_MAX_ACL_SIZE	1024
291da177e4SLinus Torvalds #define HCI_MAX_SCO_SIZE	255
301da177e4SLinus Torvalds #define HCI_MAX_EVENT_SIZE	260
311da177e4SLinus Torvalds #define HCI_MAX_FRAME_SIZE	(HCI_MAX_ACL_SIZE + 4)
321da177e4SLinus Torvalds 
331da177e4SLinus Torvalds /* HCI dev events */
341da177e4SLinus Torvalds #define HCI_DEV_REG			1
351da177e4SLinus Torvalds #define HCI_DEV_UNREG			2
361da177e4SLinus Torvalds #define HCI_DEV_UP			3
371da177e4SLinus Torvalds #define HCI_DEV_DOWN			4
381da177e4SLinus Torvalds #define HCI_DEV_SUSPEND			5
391da177e4SLinus Torvalds #define HCI_DEV_RESUME			6
401da177e4SLinus Torvalds 
411da177e4SLinus Torvalds /* HCI notify events */
421da177e4SLinus Torvalds #define HCI_NOTIFY_CONN_ADD		1
431da177e4SLinus Torvalds #define HCI_NOTIFY_CONN_DEL		2
441da177e4SLinus Torvalds #define HCI_NOTIFY_VOICE_SETTING	3
451da177e4SLinus Torvalds 
46c13854ceSMarcel Holtmann /* HCI bus types */
470ac53939SMarcel Holtmann #define HCI_VIRTUAL	0
481da177e4SLinus Torvalds #define HCI_USB		1
491da177e4SLinus Torvalds #define HCI_PCCARD	2
501da177e4SLinus Torvalds #define HCI_UART	3
511da177e4SLinus Torvalds #define HCI_RS232	4
521da177e4SLinus Torvalds #define HCI_PCI		5
530ac53939SMarcel Holtmann #define HCI_SDIO	6
541da177e4SLinus Torvalds 
55943da25dSMarcel Holtmann /* HCI controller types */
56943da25dSMarcel Holtmann #define HCI_BREDR	0x00
578f1e1742SDavid Vrabel #define HCI_AMP		0x01
58943da25dSMarcel Holtmann 
591da177e4SLinus Torvalds /* HCI device quirks */
601da177e4SLinus Torvalds enum {
617a9d4020SMarcel Holtmann 	HCI_QUIRK_NO_RESET,
62da1f5198SMarcel Holtmann 	HCI_QUIRK_RAW_DEVICE,
63da1f5198SMarcel Holtmann 	HCI_QUIRK_FIXUP_BUFFER_SIZE
641da177e4SLinus Torvalds };
651da177e4SLinus Torvalds 
661da177e4SLinus Torvalds /* HCI device flags */
671da177e4SLinus Torvalds enum {
681da177e4SLinus Torvalds 	HCI_UP,
691da177e4SLinus Torvalds 	HCI_INIT,
701da177e4SLinus Torvalds 	HCI_RUNNING,
711da177e4SLinus Torvalds 
721da177e4SLinus Torvalds 	HCI_PSCAN,
731da177e4SLinus Torvalds 	HCI_ISCAN,
741da177e4SLinus Torvalds 	HCI_AUTH,
751da177e4SLinus Torvalds 	HCI_ENCRYPT,
761da177e4SLinus Torvalds 	HCI_INQUIRY,
771da177e4SLinus Torvalds 
781da177e4SLinus Torvalds 	HCI_RAW,
79ab81cbf9SJohan Hedberg 
80ab81cbf9SJohan Hedberg 	HCI_SETUP,
81ab81cbf9SJohan Hedberg 	HCI_AUTO_OFF,
82ebc99febSJohan Hedberg 	HCI_MGMT,
83c542a06cSJohan Hedberg 	HCI_PAIRABLE,
841aff6f09SJohan Hedberg 	HCI_SERVICE_CACHE,
8555ed8ca1SJohan Hedberg 	HCI_LINK_KEYS,
8655ed8ca1SJohan Hedberg 	HCI_DEBUG_KEYS,
87*10572132SGustavo F. Padovan 
88*10572132SGustavo F. Padovan 	HCI_RESET,
891da177e4SLinus Torvalds };
901da177e4SLinus Torvalds 
911da177e4SLinus Torvalds /* HCI ioctl defines */
921da177e4SLinus Torvalds #define HCIDEVUP	_IOW('H', 201, int)
931da177e4SLinus Torvalds #define HCIDEVDOWN	_IOW('H', 202, int)
941da177e4SLinus Torvalds #define HCIDEVRESET	_IOW('H', 203, int)
951da177e4SLinus Torvalds #define HCIDEVRESTAT	_IOW('H', 204, int)
961da177e4SLinus Torvalds 
971da177e4SLinus Torvalds #define HCIGETDEVLIST	_IOR('H', 210, int)
981da177e4SLinus Torvalds #define HCIGETDEVINFO	_IOR('H', 211, int)
991da177e4SLinus Torvalds #define HCIGETCONNLIST	_IOR('H', 212, int)
1001da177e4SLinus Torvalds #define HCIGETCONNINFO	_IOR('H', 213, int)
10140be492fSMarcel Holtmann #define HCIGETAUTHINFO	_IOR('H', 215, int)
1021da177e4SLinus Torvalds 
1031da177e4SLinus Torvalds #define HCISETRAW	_IOW('H', 220, int)
1041da177e4SLinus Torvalds #define HCISETSCAN	_IOW('H', 221, int)
1051da177e4SLinus Torvalds #define HCISETAUTH	_IOW('H', 222, int)
1061da177e4SLinus Torvalds #define HCISETENCRYPT	_IOW('H', 223, int)
1071da177e4SLinus Torvalds #define HCISETPTYPE	_IOW('H', 224, int)
1081da177e4SLinus Torvalds #define HCISETLINKPOL	_IOW('H', 225, int)
1091da177e4SLinus Torvalds #define HCISETLINKMODE	_IOW('H', 226, int)
1101da177e4SLinus Torvalds #define HCISETACLMTU	_IOW('H', 227, int)
1111da177e4SLinus Torvalds #define HCISETSCOMTU	_IOW('H', 228, int)
1121da177e4SLinus Torvalds 
113f0358568SJohan Hedberg #define HCIBLOCKADDR	_IOW('H', 230, int)
114f0358568SJohan Hedberg #define HCIUNBLOCKADDR	_IOW('H', 231, int)
115f0358568SJohan Hedberg 
1161da177e4SLinus Torvalds #define HCIINQUIRY	_IOR('H', 240, int)
1171da177e4SLinus Torvalds 
1181da177e4SLinus Torvalds /* HCI timeouts */
11904837f64SMarcel Holtmann #define HCI_CONNECT_TIMEOUT	(40000)	/* 40 seconds */
12004837f64SMarcel Holtmann #define HCI_DISCONN_TIMEOUT	(2000)	/* 2 seconds */
121052b30b0SMarcel Holtmann #define HCI_PAIRING_TIMEOUT	(60000)	/* 60 seconds */
12204837f64SMarcel Holtmann #define HCI_IDLE_TIMEOUT	(6000)	/* 6 seconds */
12304837f64SMarcel Holtmann #define HCI_INIT_TIMEOUT	(10000)	/* 10 seconds */
1246bd32326SVille Tervo #define HCI_CMD_TIMEOUT		(1000)	/* 1 seconds */
1251da177e4SLinus Torvalds 
1265b7f9909SMarcel Holtmann /* HCI data types */
1271da177e4SLinus Torvalds #define HCI_COMMAND_PKT		0x01
1281da177e4SLinus Torvalds #define HCI_ACLDATA_PKT		0x02
1291da177e4SLinus Torvalds #define HCI_SCODATA_PKT		0x03
1301da177e4SLinus Torvalds #define HCI_EVENT_PKT		0x04
1311da177e4SLinus Torvalds #define HCI_VENDOR_PKT		0xff
1321da177e4SLinus Torvalds 
1335b7f9909SMarcel Holtmann /* HCI packet types */
1341da177e4SLinus Torvalds #define HCI_DM1		0x0008
1351da177e4SLinus Torvalds #define HCI_DM3		0x0400
1361da177e4SLinus Torvalds #define HCI_DM5		0x4000
1371da177e4SLinus Torvalds #define HCI_DH1		0x0010
1381da177e4SLinus Torvalds #define HCI_DH3		0x0800
1391da177e4SLinus Torvalds #define HCI_DH5		0x8000
1401da177e4SLinus Torvalds 
1411da177e4SLinus Torvalds #define HCI_HV1		0x0020
1421da177e4SLinus Torvalds #define HCI_HV2		0x0040
1431da177e4SLinus Torvalds #define HCI_HV3		0x0080
1441da177e4SLinus Torvalds 
1451da177e4SLinus Torvalds #define SCO_PTYPE_MASK	(HCI_HV1 | HCI_HV2 | HCI_HV3)
1461da177e4SLinus Torvalds #define ACL_PTYPE_MASK	(~SCO_PTYPE_MASK)
1471da177e4SLinus Torvalds 
1485b7f9909SMarcel Holtmann /* eSCO packet types */
1495b7f9909SMarcel Holtmann #define ESCO_HV1	0x0001
1505b7f9909SMarcel Holtmann #define ESCO_HV2	0x0002
1515b7f9909SMarcel Holtmann #define ESCO_HV3	0x0004
1525b7f9909SMarcel Holtmann #define ESCO_EV3	0x0008
1535b7f9909SMarcel Holtmann #define ESCO_EV4	0x0010
1545b7f9909SMarcel Holtmann #define ESCO_EV5	0x0020
155efc7688bSMarcel Holtmann #define ESCO_2EV3	0x0040
156efc7688bSMarcel Holtmann #define ESCO_3EV3	0x0080
157efc7688bSMarcel Holtmann #define ESCO_2EV5	0x0100
158efc7688bSMarcel Holtmann #define ESCO_3EV5	0x0200
1595b7f9909SMarcel Holtmann 
160a8746417SMarcel Holtmann #define SCO_ESCO_MASK  (ESCO_HV1 | ESCO_HV2 | ESCO_HV3)
161efc7688bSMarcel Holtmann #define EDR_ESCO_MASK  (ESCO_2EV3 | ESCO_3EV3 | ESCO_2EV5 | ESCO_3EV5)
162a8746417SMarcel Holtmann 
1631da177e4SLinus Torvalds /* ACL flags */
164e702112fSAndrei Emeltchenko #define ACL_START_NO_FLUSH	0x00
1651da177e4SLinus Torvalds #define ACL_CONT		0x01
1661da177e4SLinus Torvalds #define ACL_START		0x02
1671da177e4SLinus Torvalds #define ACL_ACTIVE_BCAST	0x04
1681da177e4SLinus Torvalds #define ACL_PICO_BCAST		0x08
1691da177e4SLinus Torvalds 
1701da177e4SLinus Torvalds /* Baseband links */
1711da177e4SLinus Torvalds #define SCO_LINK	0x00
1721da177e4SLinus Torvalds #define ACL_LINK	0x01
1735b7f9909SMarcel Holtmann #define ESCO_LINK	0x02
174fcd89c09SVille Tervo /* Low Energy links do not have defined link type. Use invented one */
175fcd89c09SVille Tervo #define LE_LINK		0x80
1761da177e4SLinus Torvalds 
1771da177e4SLinus Torvalds /* LMP features */
1781da177e4SLinus Torvalds #define LMP_3SLOT	0x01
1791da177e4SLinus Torvalds #define LMP_5SLOT	0x02
1801da177e4SLinus Torvalds #define LMP_ENCRYPT	0x04
1811da177e4SLinus Torvalds #define LMP_SOFFSET	0x08
1821da177e4SLinus Torvalds #define LMP_TACCURACY	0x10
1831da177e4SLinus Torvalds #define LMP_RSWITCH	0x20
1841da177e4SLinus Torvalds #define LMP_HOLD	0x40
18504837f64SMarcel Holtmann #define LMP_SNIFF	0x80
1861da177e4SLinus Torvalds 
1871da177e4SLinus Torvalds #define LMP_PARK	0x01
1881da177e4SLinus Torvalds #define LMP_RSSI	0x02
1891da177e4SLinus Torvalds #define LMP_QUALITY	0x04
1901da177e4SLinus Torvalds #define LMP_SCO		0x08
1911da177e4SLinus Torvalds #define LMP_HV2		0x10
1921da177e4SLinus Torvalds #define LMP_HV3		0x20
1931da177e4SLinus Torvalds #define LMP_ULAW	0x40
1941da177e4SLinus Torvalds #define LMP_ALAW	0x80
1951da177e4SLinus Torvalds 
1961da177e4SLinus Torvalds #define LMP_CVSD	0x01
1971da177e4SLinus Torvalds #define LMP_PSCHEME	0x02
1981da177e4SLinus Torvalds #define LMP_PCONTROL	0x04
1991da177e4SLinus Torvalds 
200d5859e22SJohan Hedberg #define LMP_RSSI_INQ	0x40
2015b7f9909SMarcel Holtmann #define LMP_ESCO	0x80
2025b7f9909SMarcel Holtmann 
2035b7f9909SMarcel Holtmann #define LMP_EV4		0x01
2045b7f9909SMarcel Holtmann #define LMP_EV5		0x02
205d5859e22SJohan Hedberg #define LMP_LE		0x40
2065b7f9909SMarcel Holtmann 
20704837f64SMarcel Holtmann #define LMP_SNIFF_SUBR	0x02
208d5859e22SJohan Hedberg #define LMP_PAUSE_ENC	0x04
209efc7688bSMarcel Holtmann #define LMP_EDR_ESCO_2M	0x20
210efc7688bSMarcel Holtmann #define LMP_EDR_ESCO_3M	0x40
211efc7688bSMarcel Holtmann #define LMP_EDR_3S_ESCO	0x80
21204837f64SMarcel Holtmann 
213d5859e22SJohan Hedberg #define LMP_EXT_INQ	0x01
214769be974SMarcel Holtmann #define LMP_SIMPLE_PAIR	0x08
215e702112fSAndrei Emeltchenko #define LMP_NO_FLUSH	0x40
216769be974SMarcel Holtmann 
217d5859e22SJohan Hedberg #define LMP_LSTO	0x01
218d5859e22SJohan Hedberg #define LMP_INQ_TX_PWR	0x02
219d5859e22SJohan Hedberg 
22004837f64SMarcel Holtmann /* Connection modes */
22104837f64SMarcel Holtmann #define HCI_CM_ACTIVE	0x0000
22204837f64SMarcel Holtmann #define HCI_CM_HOLD	0x0001
22304837f64SMarcel Holtmann #define HCI_CM_SNIFF	0x0002
22404837f64SMarcel Holtmann #define HCI_CM_PARK	0x0003
22504837f64SMarcel Holtmann 
2261da177e4SLinus Torvalds /* Link policies */
2271da177e4SLinus Torvalds #define HCI_LP_RSWITCH	0x0001
2281da177e4SLinus Torvalds #define HCI_LP_HOLD	0x0002
2291da177e4SLinus Torvalds #define HCI_LP_SNIFF	0x0004
2301da177e4SLinus Torvalds #define HCI_LP_PARK	0x0008
2311da177e4SLinus Torvalds 
23204837f64SMarcel Holtmann /* Link modes */
2331da177e4SLinus Torvalds #define HCI_LM_ACCEPT	0x8000
2341da177e4SLinus Torvalds #define HCI_LM_MASTER	0x0001
2351da177e4SLinus Torvalds #define HCI_LM_AUTH	0x0002
2361da177e4SLinus Torvalds #define HCI_LM_ENCRYPT	0x0004
2371da177e4SLinus Torvalds #define HCI_LM_TRUSTED	0x0008
2381da177e4SLinus Torvalds #define HCI_LM_RELIABLE	0x0010
2391da177e4SLinus Torvalds #define HCI_LM_SECURE	0x0020
2401da177e4SLinus Torvalds 
24140be492fSMarcel Holtmann /* Authentication types */
24240be492fSMarcel Holtmann #define HCI_AT_NO_BONDING		0x00
24340be492fSMarcel Holtmann #define HCI_AT_NO_BONDING_MITM		0x01
24440be492fSMarcel Holtmann #define HCI_AT_DEDICATED_BONDING	0x02
24540be492fSMarcel Holtmann #define HCI_AT_DEDICATED_BONDING_MITM	0x03
24640be492fSMarcel Holtmann #define HCI_AT_GENERAL_BONDING		0x04
24740be492fSMarcel Holtmann #define HCI_AT_GENERAL_BONDING_MITM	0x05
24840be492fSMarcel Holtmann 
2491da177e4SLinus Torvalds /* -----  HCI Commands ---- */
2506bd32326SVille Tervo #define HCI_OP_NOP			0x0000
2516bd32326SVille Tervo 
252a9de9248SMarcel Holtmann #define HCI_OP_INQUIRY			0x0401
253a9de9248SMarcel Holtmann struct hci_cp_inquiry {
254a9de9248SMarcel Holtmann 	__u8     lap[3];
255a9de9248SMarcel Holtmann 	__u8     length;
256a9de9248SMarcel Holtmann 	__u8     num_rsp;
25766c853ccSGustavo F. Padovan } __packed;
2581da177e4SLinus Torvalds 
259a9de9248SMarcel Holtmann #define HCI_OP_INQUIRY_CANCEL		0x0402
260a9de9248SMarcel Holtmann 
261a9de9248SMarcel Holtmann #define HCI_OP_EXIT_PERIODIC_INQ	0x0404
262a9de9248SMarcel Holtmann 
263a9de9248SMarcel Holtmann #define HCI_OP_CREATE_CONN		0x0405
264a9de9248SMarcel Holtmann struct hci_cp_create_conn {
265a9de9248SMarcel Holtmann 	bdaddr_t bdaddr;
266a9de9248SMarcel Holtmann 	__le16   pkt_type;
267a9de9248SMarcel Holtmann 	__u8     pscan_rep_mode;
268a9de9248SMarcel Holtmann 	__u8     pscan_mode;
269a9de9248SMarcel Holtmann 	__le16   clock_offset;
270a9de9248SMarcel Holtmann 	__u8     role_switch;
27166c853ccSGustavo F. Padovan } __packed;
2721da177e4SLinus Torvalds 
273a9de9248SMarcel Holtmann #define HCI_OP_DISCONNECT		0x0406
274a9de9248SMarcel Holtmann struct hci_cp_disconnect {
275a9de9248SMarcel Holtmann 	__le16   handle;
276a9de9248SMarcel Holtmann 	__u8     reason;
27766c853ccSGustavo F. Padovan } __packed;
2781da177e4SLinus Torvalds 
279a9de9248SMarcel Holtmann #define HCI_OP_ADD_SCO			0x0407
280a9de9248SMarcel Holtmann struct hci_cp_add_sco {
281a9de9248SMarcel Holtmann 	__le16   handle;
282a9de9248SMarcel Holtmann 	__le16   pkt_type;
28366c853ccSGustavo F. Padovan } __packed;
284a9de9248SMarcel Holtmann 
285a9de9248SMarcel Holtmann #define HCI_OP_CREATE_CONN_CANCEL	0x0408
286a9de9248SMarcel Holtmann struct hci_cp_create_conn_cancel {
2871da177e4SLinus Torvalds 	bdaddr_t bdaddr;
28866c853ccSGustavo F. Padovan } __packed;
2891da177e4SLinus Torvalds 
290a9de9248SMarcel Holtmann #define HCI_OP_ACCEPT_CONN_REQ		0x0409
291a9de9248SMarcel Holtmann struct hci_cp_accept_conn_req {
292a9de9248SMarcel Holtmann 	bdaddr_t bdaddr;
293a9de9248SMarcel Holtmann 	__u8     role;
29466c853ccSGustavo F. Padovan } __packed;
2951da177e4SLinus Torvalds 
296a9de9248SMarcel Holtmann #define HCI_OP_REJECT_CONN_REQ		0x040a
297a9de9248SMarcel Holtmann struct hci_cp_reject_conn_req {
298a9de9248SMarcel Holtmann 	bdaddr_t bdaddr;
299a9de9248SMarcel Holtmann 	__u8     reason;
30066c853ccSGustavo F. Padovan } __packed;
3011da177e4SLinus Torvalds 
302a9de9248SMarcel Holtmann #define HCI_OP_LINK_KEY_REPLY		0x040b
303a9de9248SMarcel Holtmann struct hci_cp_link_key_reply {
304a9de9248SMarcel Holtmann 	bdaddr_t bdaddr;
305a9de9248SMarcel Holtmann 	__u8     link_key[16];
30666c853ccSGustavo F. Padovan } __packed;
3071da177e4SLinus Torvalds 
308a9de9248SMarcel Holtmann #define HCI_OP_LINK_KEY_NEG_REPLY	0x040c
309a9de9248SMarcel Holtmann struct hci_cp_link_key_neg_reply {
310a9de9248SMarcel Holtmann 	bdaddr_t bdaddr;
31166c853ccSGustavo F. Padovan } __packed;
3121da177e4SLinus Torvalds 
313a9de9248SMarcel Holtmann #define HCI_OP_PIN_CODE_REPLY		0x040d
314a9de9248SMarcel Holtmann struct hci_cp_pin_code_reply {
315a9de9248SMarcel Holtmann 	bdaddr_t bdaddr;
316a9de9248SMarcel Holtmann 	__u8     pin_len;
317a9de9248SMarcel Holtmann 	__u8     pin_code[16];
31866c853ccSGustavo F. Padovan } __packed;
319980e1a53SJohan Hedberg struct hci_rp_pin_code_reply {
320980e1a53SJohan Hedberg 	__u8     status;
321980e1a53SJohan Hedberg 	bdaddr_t bdaddr;
322980e1a53SJohan Hedberg } __packed;
323a9de9248SMarcel Holtmann 
324a9de9248SMarcel Holtmann #define HCI_OP_PIN_CODE_NEG_REPLY	0x040e
325a9de9248SMarcel Holtmann struct hci_cp_pin_code_neg_reply {
326a9de9248SMarcel Holtmann 	bdaddr_t bdaddr;
32766c853ccSGustavo F. Padovan } __packed;
328980e1a53SJohan Hedberg struct hci_rp_pin_code_neg_reply {
329980e1a53SJohan Hedberg 	__u8     status;
330980e1a53SJohan Hedberg 	bdaddr_t bdaddr;
331980e1a53SJohan Hedberg } __packed;
332a9de9248SMarcel Holtmann 
333a9de9248SMarcel Holtmann #define HCI_OP_CHANGE_CONN_PTYPE	0x040f
334a9de9248SMarcel Holtmann struct hci_cp_change_conn_ptype {
335a9de9248SMarcel Holtmann 	__le16   handle;
336a9de9248SMarcel Holtmann 	__le16   pkt_type;
33766c853ccSGustavo F. Padovan } __packed;
338a9de9248SMarcel Holtmann 
339a9de9248SMarcel Holtmann #define HCI_OP_AUTH_REQUESTED		0x0411
340a9de9248SMarcel Holtmann struct hci_cp_auth_requested {
341a9de9248SMarcel Holtmann 	__le16   handle;
34266c853ccSGustavo F. Padovan } __packed;
343a9de9248SMarcel Holtmann 
344a9de9248SMarcel Holtmann #define HCI_OP_SET_CONN_ENCRYPT		0x0413
345a9de9248SMarcel Holtmann struct hci_cp_set_conn_encrypt {
346a9de9248SMarcel Holtmann 	__le16   handle;
347a9de9248SMarcel Holtmann 	__u8     encrypt;
34866c853ccSGustavo F. Padovan } __packed;
349a9de9248SMarcel Holtmann 
350a9de9248SMarcel Holtmann #define HCI_OP_CHANGE_CONN_LINK_KEY	0x0415
351a9de9248SMarcel Holtmann struct hci_cp_change_conn_link_key {
352a9de9248SMarcel Holtmann 	__le16   handle;
35366c853ccSGustavo F. Padovan } __packed;
354a9de9248SMarcel Holtmann 
355a9de9248SMarcel Holtmann #define HCI_OP_REMOTE_NAME_REQ		0x0419
356a9de9248SMarcel Holtmann struct hci_cp_remote_name_req {
357a9de9248SMarcel Holtmann 	bdaddr_t bdaddr;
358a9de9248SMarcel Holtmann 	__u8     pscan_rep_mode;
359a9de9248SMarcel Holtmann 	__u8     pscan_mode;
360a9de9248SMarcel Holtmann 	__le16   clock_offset;
36166c853ccSGustavo F. Padovan } __packed;
362a9de9248SMarcel Holtmann 
363a9de9248SMarcel Holtmann #define HCI_OP_REMOTE_NAME_REQ_CANCEL	0x041a
364a9de9248SMarcel Holtmann struct hci_cp_remote_name_req_cancel {
365a9de9248SMarcel Holtmann 	bdaddr_t bdaddr;
36666c853ccSGustavo F. Padovan } __packed;
367a9de9248SMarcel Holtmann 
368a9de9248SMarcel Holtmann #define HCI_OP_READ_REMOTE_FEATURES	0x041b
369a9de9248SMarcel Holtmann struct hci_cp_read_remote_features {
370a9de9248SMarcel Holtmann 	__le16   handle;
37166c853ccSGustavo F. Padovan } __packed;
372a9de9248SMarcel Holtmann 
373a9de9248SMarcel Holtmann #define HCI_OP_READ_REMOTE_EXT_FEATURES	0x041c
374a9de9248SMarcel Holtmann struct hci_cp_read_remote_ext_features {
375a9de9248SMarcel Holtmann 	__le16   handle;
376a9de9248SMarcel Holtmann 	__u8     page;
37766c853ccSGustavo F. Padovan } __packed;
378a9de9248SMarcel Holtmann 
379a9de9248SMarcel Holtmann #define HCI_OP_READ_REMOTE_VERSION	0x041d
380a9de9248SMarcel Holtmann struct hci_cp_read_remote_version {
381a9de9248SMarcel Holtmann 	__le16   handle;
38266c853ccSGustavo F. Padovan } __packed;
383a9de9248SMarcel Holtmann 
384a9de9248SMarcel Holtmann #define HCI_OP_SETUP_SYNC_CONN		0x0428
385a9de9248SMarcel Holtmann struct hci_cp_setup_sync_conn {
386a9de9248SMarcel Holtmann 	__le16   handle;
387a9de9248SMarcel Holtmann 	__le32   tx_bandwidth;
388a9de9248SMarcel Holtmann 	__le32   rx_bandwidth;
389a9de9248SMarcel Holtmann 	__le16   max_latency;
390a9de9248SMarcel Holtmann 	__le16   voice_setting;
391a9de9248SMarcel Holtmann 	__u8     retrans_effort;
392a9de9248SMarcel Holtmann 	__le16   pkt_type;
39366c853ccSGustavo F. Padovan } __packed;
394a9de9248SMarcel Holtmann 
395a9de9248SMarcel Holtmann #define HCI_OP_ACCEPT_SYNC_CONN_REQ	0x0429
396a9de9248SMarcel Holtmann struct hci_cp_accept_sync_conn_req {
397a9de9248SMarcel Holtmann 	bdaddr_t bdaddr;
398a9de9248SMarcel Holtmann 	__le32   tx_bandwidth;
399a9de9248SMarcel Holtmann 	__le32   rx_bandwidth;
400a9de9248SMarcel Holtmann 	__le16   max_latency;
401a9de9248SMarcel Holtmann 	__le16   content_format;
402a9de9248SMarcel Holtmann 	__u8     retrans_effort;
403a9de9248SMarcel Holtmann 	__le16   pkt_type;
40466c853ccSGustavo F. Padovan } __packed;
405a9de9248SMarcel Holtmann 
406a9de9248SMarcel Holtmann #define HCI_OP_REJECT_SYNC_CONN_REQ	0x042a
407a9de9248SMarcel Holtmann struct hci_cp_reject_sync_conn_req {
408a9de9248SMarcel Holtmann 	bdaddr_t bdaddr;
409a9de9248SMarcel Holtmann 	__u8     reason;
41066c853ccSGustavo F. Padovan } __packed;
411a9de9248SMarcel Holtmann 
41217fa4b9dSJohan Hedberg #define HCI_OP_IO_CAPABILITY_REPLY	0x042b
41317fa4b9dSJohan Hedberg struct hci_cp_io_capability_reply {
41417fa4b9dSJohan Hedberg 	bdaddr_t bdaddr;
41517fa4b9dSJohan Hedberg 	__u8     capability;
41617fa4b9dSJohan Hedberg 	__u8     oob_data;
41717fa4b9dSJohan Hedberg 	__u8     authentication;
41817fa4b9dSJohan Hedberg } __packed;
41917fa4b9dSJohan Hedberg 
420a5c29683SJohan Hedberg #define HCI_OP_USER_CONFIRM_REPLY		0x042c
421a5c29683SJohan Hedberg struct hci_cp_user_confirm_reply {
422a5c29683SJohan Hedberg 	bdaddr_t bdaddr;
423a5c29683SJohan Hedberg } __packed;
424a5c29683SJohan Hedberg struct hci_rp_user_confirm_reply {
425a5c29683SJohan Hedberg 	__u8     status;
426a5c29683SJohan Hedberg 	bdaddr_t bdaddr;
427a5c29683SJohan Hedberg } __packed;
428a5c29683SJohan Hedberg 
429a5c29683SJohan Hedberg #define HCI_OP_USER_CONFIRM_NEG_REPLY	0x042d
430a5c29683SJohan Hedberg 
43103b555e1SJohan Hedberg #define HCI_OP_IO_CAPABILITY_NEG_REPLY	0x0434
43203b555e1SJohan Hedberg struct hci_cp_io_capability_neg_reply {
43303b555e1SJohan Hedberg 	bdaddr_t bdaddr;
43403b555e1SJohan Hedberg 	__u8     reason;
43503b555e1SJohan Hedberg } __packed;
43603b555e1SJohan Hedberg 
437a9de9248SMarcel Holtmann #define HCI_OP_SNIFF_MODE		0x0803
438a9de9248SMarcel Holtmann struct hci_cp_sniff_mode {
439a9de9248SMarcel Holtmann 	__le16   handle;
440a9de9248SMarcel Holtmann 	__le16   max_interval;
441a9de9248SMarcel Holtmann 	__le16   min_interval;
442a9de9248SMarcel Holtmann 	__le16   attempt;
443a9de9248SMarcel Holtmann 	__le16   timeout;
44466c853ccSGustavo F. Padovan } __packed;
445a9de9248SMarcel Holtmann 
446a9de9248SMarcel Holtmann #define HCI_OP_EXIT_SNIFF_MODE		0x0804
447a9de9248SMarcel Holtmann struct hci_cp_exit_sniff_mode {
448a9de9248SMarcel Holtmann 	__le16   handle;
44966c853ccSGustavo F. Padovan } __packed;
450a9de9248SMarcel Holtmann 
451a9de9248SMarcel Holtmann #define HCI_OP_ROLE_DISCOVERY		0x0809
452a9de9248SMarcel Holtmann struct hci_cp_role_discovery {
453a9de9248SMarcel Holtmann 	__le16   handle;
45466c853ccSGustavo F. Padovan } __packed;
455a9de9248SMarcel Holtmann struct hci_rp_role_discovery {
456a9de9248SMarcel Holtmann 	__u8     status;
457a9de9248SMarcel Holtmann 	__le16   handle;
458a9de9248SMarcel Holtmann 	__u8     role;
45966c853ccSGustavo F. Padovan } __packed;
460a9de9248SMarcel Holtmann 
461a9de9248SMarcel Holtmann #define HCI_OP_SWITCH_ROLE		0x080b
462a9de9248SMarcel Holtmann struct hci_cp_switch_role {
463a9de9248SMarcel Holtmann 	bdaddr_t bdaddr;
464a9de9248SMarcel Holtmann 	__u8     role;
46566c853ccSGustavo F. Padovan } __packed;
466a9de9248SMarcel Holtmann 
467a9de9248SMarcel Holtmann #define HCI_OP_READ_LINK_POLICY		0x080c
468a9de9248SMarcel Holtmann struct hci_cp_read_link_policy {
469a9de9248SMarcel Holtmann 	__le16   handle;
47066c853ccSGustavo F. Padovan } __packed;
471a9de9248SMarcel Holtmann struct hci_rp_read_link_policy {
472a9de9248SMarcel Holtmann 	__u8     status;
473a9de9248SMarcel Holtmann 	__le16   handle;
474a9de9248SMarcel Holtmann 	__le16   policy;
47566c853ccSGustavo F. Padovan } __packed;
476a9de9248SMarcel Holtmann 
477a9de9248SMarcel Holtmann #define HCI_OP_WRITE_LINK_POLICY	0x080d
478a9de9248SMarcel Holtmann struct hci_cp_write_link_policy {
479a9de9248SMarcel Holtmann 	__le16   handle;
480a9de9248SMarcel Holtmann 	__le16   policy;
48166c853ccSGustavo F. Padovan } __packed;
482a9de9248SMarcel Holtmann struct hci_rp_write_link_policy {
483a9de9248SMarcel Holtmann 	__u8     status;
484a9de9248SMarcel Holtmann 	__le16   handle;
48566c853ccSGustavo F. Padovan } __packed;
486a9de9248SMarcel Holtmann 
487e4e8e37cSMarcel Holtmann #define HCI_OP_READ_DEF_LINK_POLICY	0x080e
488e4e8e37cSMarcel Holtmann struct hci_rp_read_def_link_policy {
489e4e8e37cSMarcel Holtmann 	__u8     status;
490e4e8e37cSMarcel Holtmann 	__le16   policy;
49166c853ccSGustavo F. Padovan } __packed;
492e4e8e37cSMarcel Holtmann 
493e4e8e37cSMarcel Holtmann #define HCI_OP_WRITE_DEF_LINK_POLICY	0x080f
494e4e8e37cSMarcel Holtmann struct hci_cp_write_def_link_policy {
495e4e8e37cSMarcel Holtmann 	__le16   policy;
49666c853ccSGustavo F. Padovan } __packed;
497e4e8e37cSMarcel Holtmann 
498a9de9248SMarcel Holtmann #define HCI_OP_SNIFF_SUBRATE		0x0811
499a9de9248SMarcel Holtmann struct hci_cp_sniff_subrate {
500a9de9248SMarcel Holtmann 	__le16   handle;
501a9de9248SMarcel Holtmann 	__le16   max_latency;
502a9de9248SMarcel Holtmann 	__le16   min_remote_timeout;
503a9de9248SMarcel Holtmann 	__le16   min_local_timeout;
50466c853ccSGustavo F. Padovan } __packed;
505a9de9248SMarcel Holtmann 
506a9de9248SMarcel Holtmann #define HCI_OP_SET_EVENT_MASK		0x0c01
507a9de9248SMarcel Holtmann struct hci_cp_set_event_mask {
508a9de9248SMarcel Holtmann 	__u8     mask[8];
50966c853ccSGustavo F. Padovan } __packed;
510a9de9248SMarcel Holtmann 
511a9de9248SMarcel Holtmann #define HCI_OP_RESET			0x0c03
512a9de9248SMarcel Holtmann 
513a9de9248SMarcel Holtmann #define HCI_OP_SET_EVENT_FLT		0x0c05
5141da177e4SLinus Torvalds struct hci_cp_set_event_flt {
5151da177e4SLinus Torvalds 	__u8     flt_type;
5161da177e4SLinus Torvalds 	__u8     cond_type;
5171da177e4SLinus Torvalds 	__u8     condition[0];
51866c853ccSGustavo F. Padovan } __packed;
5191da177e4SLinus Torvalds 
5201da177e4SLinus Torvalds /* Filter types */
5211da177e4SLinus Torvalds #define HCI_FLT_CLEAR_ALL	0x00
5221da177e4SLinus Torvalds #define HCI_FLT_INQ_RESULT	0x01
5231da177e4SLinus Torvalds #define HCI_FLT_CONN_SETUP	0x02
5241da177e4SLinus Torvalds 
5251da177e4SLinus Torvalds /* CONN_SETUP Condition types */
5261da177e4SLinus Torvalds #define HCI_CONN_SETUP_ALLOW_ALL	0x00
5271da177e4SLinus Torvalds #define HCI_CONN_SETUP_ALLOW_CLASS	0x01
5281da177e4SLinus Torvalds #define HCI_CONN_SETUP_ALLOW_BDADDR	0x02
5291da177e4SLinus Torvalds 
5301da177e4SLinus Torvalds /* CONN_SETUP Conditions */
5311da177e4SLinus Torvalds #define HCI_CONN_SETUP_AUTO_OFF	0x01
5321da177e4SLinus Torvalds #define HCI_CONN_SETUP_AUTO_ON	0x02
5331da177e4SLinus Torvalds 
534b0916ea0SJohan Hedberg #define HCI_OP_DELETE_STORED_LINK_KEY	0x0c12
535b0916ea0SJohan Hedberg struct hci_cp_delete_stored_link_key {
536b0916ea0SJohan Hedberg 	bdaddr_t bdaddr;
537b0916ea0SJohan Hedberg 	__u8     delete_all;
538b0916ea0SJohan Hedberg } __packed;
539b0916ea0SJohan Hedberg 
540a9de9248SMarcel Holtmann #define HCI_OP_WRITE_LOCAL_NAME		0x0c13
541a9de9248SMarcel Holtmann struct hci_cp_write_local_name {
542a9de9248SMarcel Holtmann 	__u8     name[248];
54366c853ccSGustavo F. Padovan } __packed;
544a9de9248SMarcel Holtmann 
545a9de9248SMarcel Holtmann #define HCI_OP_READ_LOCAL_NAME		0x0c14
546a9de9248SMarcel Holtmann struct hci_rp_read_local_name {
547a9de9248SMarcel Holtmann 	__u8     status;
548a9de9248SMarcel Holtmann 	__u8     name[248];
54966c853ccSGustavo F. Padovan } __packed;
550a9de9248SMarcel Holtmann 
551a9de9248SMarcel Holtmann #define HCI_OP_WRITE_CA_TIMEOUT		0x0c16
552a9de9248SMarcel Holtmann 
553a9de9248SMarcel Holtmann #define HCI_OP_WRITE_PG_TIMEOUT		0x0c18
554a9de9248SMarcel Holtmann 
555a9de9248SMarcel Holtmann #define HCI_OP_WRITE_SCAN_ENABLE	0x0c1a
556a9de9248SMarcel Holtmann 	#define SCAN_DISABLED		0x00
557a9de9248SMarcel Holtmann 	#define SCAN_INQUIRY		0x01
558a9de9248SMarcel Holtmann 	#define SCAN_PAGE		0x02
559a9de9248SMarcel Holtmann 
560a9de9248SMarcel Holtmann #define HCI_OP_READ_AUTH_ENABLE		0x0c1f
561a9de9248SMarcel Holtmann 
562a9de9248SMarcel Holtmann #define HCI_OP_WRITE_AUTH_ENABLE	0x0c20
563a9de9248SMarcel Holtmann 	#define AUTH_DISABLED		0x00
564a9de9248SMarcel Holtmann 	#define AUTH_ENABLED		0x01
565a9de9248SMarcel Holtmann 
566a9de9248SMarcel Holtmann #define HCI_OP_READ_ENCRYPT_MODE	0x0c21
567a9de9248SMarcel Holtmann 
568a9de9248SMarcel Holtmann #define HCI_OP_WRITE_ENCRYPT_MODE	0x0c22
569a9de9248SMarcel Holtmann 	#define ENCRYPT_DISABLED	0x00
570a9de9248SMarcel Holtmann 	#define ENCRYPT_P2P		0x01
571a9de9248SMarcel Holtmann 	#define ENCRYPT_BOTH		0x02
572a9de9248SMarcel Holtmann 
573a9de9248SMarcel Holtmann #define HCI_OP_READ_CLASS_OF_DEV	0x0c23
574a9de9248SMarcel Holtmann struct hci_rp_read_class_of_dev {
5751da177e4SLinus Torvalds 	__u8     status;
5761da177e4SLinus Torvalds 	__u8     dev_class[3];
57766c853ccSGustavo F. Padovan } __packed;
5781da177e4SLinus Torvalds 
579a9de9248SMarcel Holtmann #define HCI_OP_WRITE_CLASS_OF_DEV	0x0c24
580a9de9248SMarcel Holtmann struct hci_cp_write_class_of_dev {
5811da177e4SLinus Torvalds 	__u8     dev_class[3];
58266c853ccSGustavo F. Padovan } __packed;
5831da177e4SLinus Torvalds 
584a9de9248SMarcel Holtmann #define HCI_OP_READ_VOICE_SETTING	0x0c25
5851da177e4SLinus Torvalds struct hci_rp_read_voice_setting {
5861da177e4SLinus Torvalds 	__u8     status;
5871ebb9252SMarcel Holtmann 	__le16   voice_setting;
58866c853ccSGustavo F. Padovan } __packed;
5891da177e4SLinus Torvalds 
590a9de9248SMarcel Holtmann #define HCI_OP_WRITE_VOICE_SETTING	0x0c26
5911da177e4SLinus Torvalds struct hci_cp_write_voice_setting {
5921ebb9252SMarcel Holtmann 	__le16   voice_setting;
59366c853ccSGustavo F. Padovan } __packed;
5941da177e4SLinus Torvalds 
595a9de9248SMarcel Holtmann #define HCI_OP_HOST_BUFFER_SIZE		0x0c33
5961da177e4SLinus Torvalds struct hci_cp_host_buffer_size {
5971ebb9252SMarcel Holtmann 	__le16   acl_mtu;
5981da177e4SLinus Torvalds 	__u8     sco_mtu;
5991ebb9252SMarcel Holtmann 	__le16   acl_max_pkt;
6001ebb9252SMarcel Holtmann 	__le16   sco_max_pkt;
60166c853ccSGustavo F. Padovan } __packed;
6021da177e4SLinus Torvalds 
603d5859e22SJohan Hedberg #define HCI_OP_WRITE_INQUIRY_MODE	0x0c45
604d5859e22SJohan Hedberg 
605333140b5SMarcel Holtmann #define HCI_OP_READ_SSP_MODE		0x0c55
606333140b5SMarcel Holtmann struct hci_rp_read_ssp_mode {
607333140b5SMarcel Holtmann 	__u8     status;
608333140b5SMarcel Holtmann 	__u8     mode;
60966c853ccSGustavo F. Padovan } __packed;
610333140b5SMarcel Holtmann 
611333140b5SMarcel Holtmann #define HCI_OP_WRITE_SSP_MODE		0x0c56
612333140b5SMarcel Holtmann struct hci_cp_write_ssp_mode {
613333140b5SMarcel Holtmann 	__u8     mode;
61466c853ccSGustavo F. Padovan } __packed;
615333140b5SMarcel Holtmann 
616d5859e22SJohan Hedberg #define HCI_OP_READ_INQ_RSP_TX_POWER	0x0c58
617d5859e22SJohan Hedberg 
618a9de9248SMarcel Holtmann #define HCI_OP_READ_LOCAL_VERSION	0x1001
619a9de9248SMarcel Holtmann struct hci_rp_read_local_version {
6201da177e4SLinus Torvalds 	__u8     status;
621a9de9248SMarcel Holtmann 	__u8     hci_ver;
622a9de9248SMarcel Holtmann 	__le16   hci_rev;
623a9de9248SMarcel Holtmann 	__u8     lmp_ver;
624a9de9248SMarcel Holtmann 	__le16   manufacturer;
625a9de9248SMarcel Holtmann 	__le16   lmp_subver;
62666c853ccSGustavo F. Padovan } __packed;
6271da177e4SLinus Torvalds 
628a9de9248SMarcel Holtmann #define HCI_OP_READ_LOCAL_COMMANDS	0x1002
629a9de9248SMarcel Holtmann struct hci_rp_read_local_commands {
6301da177e4SLinus Torvalds 	__u8     status;
631a9de9248SMarcel Holtmann 	__u8     commands[64];
63266c853ccSGustavo F. Padovan } __packed;
6331da177e4SLinus Torvalds 
634a9de9248SMarcel Holtmann #define HCI_OP_READ_LOCAL_FEATURES	0x1003
635a9de9248SMarcel Holtmann struct hci_rp_read_local_features {
636a9de9248SMarcel Holtmann 	__u8     status;
637a9de9248SMarcel Holtmann 	__u8     features[8];
63866c853ccSGustavo F. Padovan } __packed;
639a9de9248SMarcel Holtmann 
640a9de9248SMarcel Holtmann #define HCI_OP_READ_LOCAL_EXT_FEATURES	0x1004
641a9de9248SMarcel Holtmann struct hci_rp_read_local_ext_features {
642a9de9248SMarcel Holtmann 	__u8     status;
643a9de9248SMarcel Holtmann 	__u8     page;
644a9de9248SMarcel Holtmann 	__u8     max_page;
645a9de9248SMarcel Holtmann 	__u8     features[8];
64666c853ccSGustavo F. Padovan } __packed;
647a9de9248SMarcel Holtmann 
648a9de9248SMarcel Holtmann #define HCI_OP_READ_BUFFER_SIZE		0x1005
649a9de9248SMarcel Holtmann struct hci_rp_read_buffer_size {
650a9de9248SMarcel Holtmann 	__u8     status;
651a9de9248SMarcel Holtmann 	__le16   acl_mtu;
652a9de9248SMarcel Holtmann 	__u8     sco_mtu;
653a9de9248SMarcel Holtmann 	__le16   acl_max_pkt;
654a9de9248SMarcel Holtmann 	__le16   sco_max_pkt;
65566c853ccSGustavo F. Padovan } __packed;
656a9de9248SMarcel Holtmann 
657a9de9248SMarcel Holtmann #define HCI_OP_READ_BD_ADDR		0x1009
658a9de9248SMarcel Holtmann struct hci_rp_read_bd_addr {
659a9de9248SMarcel Holtmann 	__u8     status;
6601da177e4SLinus Torvalds 	bdaddr_t bdaddr;
66166c853ccSGustavo F. Padovan } __packed;
6621da177e4SLinus Torvalds 
66363185f64SVille Tervo #define HCI_OP_LE_SET_EVENT_MASK	0x2001
66463185f64SVille Tervo struct hci_cp_le_set_event_mask {
66563185f64SVille Tervo 	__u8     mask[8];
66663185f64SVille Tervo } __packed;
66763185f64SVille Tervo 
66863185f64SVille Tervo #define HCI_OP_LE_READ_BUFFER_SIZE	0x2002
66963185f64SVille Tervo struct hci_rp_le_read_buffer_size {
67063185f64SVille Tervo 	__u8     status;
67163185f64SVille Tervo 	__le16   le_mtu;
67263185f64SVille Tervo 	__u8     le_max_pkt;
67363185f64SVille Tervo } __packed;
67463185f64SVille Tervo 
67563185f64SVille Tervo #define HCI_OP_LE_CREATE_CONN		0x200d
67663185f64SVille Tervo struct hci_cp_le_create_conn {
67763185f64SVille Tervo 	__le16   scan_interval;
67863185f64SVille Tervo 	__le16   scan_window;
67963185f64SVille Tervo 	__u8     filter_policy;
68063185f64SVille Tervo 	__u8     peer_addr_type;
68163185f64SVille Tervo 	bdaddr_t peer_addr;
68263185f64SVille Tervo 	__u8     own_address_type;
68363185f64SVille Tervo 	__le16   conn_interval_min;
68463185f64SVille Tervo 	__le16   conn_interval_max;
68563185f64SVille Tervo 	__le16   conn_latency;
68663185f64SVille Tervo 	__le16   supervision_timeout;
68763185f64SVille Tervo 	__le16   min_ce_len;
68863185f64SVille Tervo 	__le16   max_ce_len;
68963185f64SVille Tervo } __packed;
69063185f64SVille Tervo 
69163185f64SVille Tervo #define HCI_OP_LE_CREATE_CONN_CANCEL	0x200e
69263185f64SVille Tervo 
6932ce603ebSClaudio Takahasi #define HCI_OP_LE_CONN_UPDATE		0x2013
6942ce603ebSClaudio Takahasi struct hci_cp_le_conn_update {
6952ce603ebSClaudio Takahasi 	__le16   handle;
6962ce603ebSClaudio Takahasi 	__le16   conn_interval_min;
6972ce603ebSClaudio Takahasi 	__le16   conn_interval_max;
6982ce603ebSClaudio Takahasi 	__le16   conn_latency;
6992ce603ebSClaudio Takahasi 	__le16   supervision_timeout;
7002ce603ebSClaudio Takahasi 	__le16   min_ce_len;
7012ce603ebSClaudio Takahasi 	__le16   max_ce_len;
7022ce603ebSClaudio Takahasi } __packed;
7032ce603ebSClaudio Takahasi 
7041da177e4SLinus Torvalds /* ---- HCI Events ---- */
7051da177e4SLinus Torvalds #define HCI_EV_INQUIRY_COMPLETE		0x01
7061da177e4SLinus Torvalds 
7071da177e4SLinus Torvalds #define HCI_EV_INQUIRY_RESULT		0x02
7081da177e4SLinus Torvalds struct inquiry_info {
7091da177e4SLinus Torvalds 	bdaddr_t bdaddr;
7101da177e4SLinus Torvalds 	__u8     pscan_rep_mode;
7111da177e4SLinus Torvalds 	__u8     pscan_period_mode;
7121da177e4SLinus Torvalds 	__u8     pscan_mode;
7131da177e4SLinus Torvalds 	__u8     dev_class[3];
7141ebb9252SMarcel Holtmann 	__le16   clock_offset;
71566c853ccSGustavo F. Padovan } __packed;
7161da177e4SLinus Torvalds 
7171da177e4SLinus Torvalds #define HCI_EV_CONN_COMPLETE		0x03
7181da177e4SLinus Torvalds struct hci_ev_conn_complete {
7191da177e4SLinus Torvalds 	__u8     status;
7201ebb9252SMarcel Holtmann 	__le16   handle;
7211da177e4SLinus Torvalds 	bdaddr_t bdaddr;
7221da177e4SLinus Torvalds 	__u8     link_type;
7231da177e4SLinus Torvalds 	__u8     encr_mode;
72466c853ccSGustavo F. Padovan } __packed;
7251da177e4SLinus Torvalds 
7261da177e4SLinus Torvalds #define HCI_EV_CONN_REQUEST		0x04
7271da177e4SLinus Torvalds struct hci_ev_conn_request {
7281da177e4SLinus Torvalds 	bdaddr_t bdaddr;
7291da177e4SLinus Torvalds 	__u8     dev_class[3];
7301da177e4SLinus Torvalds 	__u8     link_type;
73166c853ccSGustavo F. Padovan } __packed;
7321da177e4SLinus Torvalds 
7331da177e4SLinus Torvalds #define HCI_EV_DISCONN_COMPLETE		0x05
7341da177e4SLinus Torvalds struct hci_ev_disconn_complete {
7351da177e4SLinus Torvalds 	__u8     status;
7361ebb9252SMarcel Holtmann 	__le16   handle;
7371da177e4SLinus Torvalds 	__u8     reason;
73866c853ccSGustavo F. Padovan } __packed;
7391da177e4SLinus Torvalds 
7401da177e4SLinus Torvalds #define HCI_EV_AUTH_COMPLETE		0x06
7411da177e4SLinus Torvalds struct hci_ev_auth_complete {
7421da177e4SLinus Torvalds 	__u8     status;
7431ebb9252SMarcel Holtmann 	__le16   handle;
74466c853ccSGustavo F. Padovan } __packed;
7451da177e4SLinus Torvalds 
746a9de9248SMarcel Holtmann #define HCI_EV_REMOTE_NAME		0x07
747a9de9248SMarcel Holtmann struct hci_ev_remote_name {
748a9de9248SMarcel Holtmann 	__u8     status;
749a9de9248SMarcel Holtmann 	bdaddr_t bdaddr;
750a9de9248SMarcel Holtmann 	__u8     name[248];
75166c853ccSGustavo F. Padovan } __packed;
752a9de9248SMarcel Holtmann 
7531da177e4SLinus Torvalds #define HCI_EV_ENCRYPT_CHANGE		0x08
7541da177e4SLinus Torvalds struct hci_ev_encrypt_change {
7551da177e4SLinus Torvalds 	__u8     status;
7561ebb9252SMarcel Holtmann 	__le16   handle;
7571da177e4SLinus Torvalds 	__u8     encrypt;
75866c853ccSGustavo F. Padovan } __packed;
7591da177e4SLinus Torvalds 
760a9de9248SMarcel Holtmann #define HCI_EV_CHANGE_LINK_KEY_COMPLETE	0x09
761a9de9248SMarcel Holtmann struct hci_ev_change_link_key_complete {
7621da177e4SLinus Torvalds 	__u8     status;
7631ebb9252SMarcel Holtmann 	__le16   handle;
76466c853ccSGustavo F. Padovan } __packed;
7651da177e4SLinus Torvalds 
766a9de9248SMarcel Holtmann #define HCI_EV_REMOTE_FEATURES		0x0b
767a9de9248SMarcel Holtmann struct hci_ev_remote_features {
768a9de9248SMarcel Holtmann 	__u8     status;
769a9de9248SMarcel Holtmann 	__le16   handle;
770a9de9248SMarcel Holtmann 	__u8     features[8];
77166c853ccSGustavo F. Padovan } __packed;
772a9de9248SMarcel Holtmann 
773a9de9248SMarcel Holtmann #define HCI_EV_REMOTE_VERSION		0x0c
774a9de9248SMarcel Holtmann struct hci_ev_remote_version {
775a9de9248SMarcel Holtmann 	__u8     status;
776a9de9248SMarcel Holtmann 	__le16   handle;
777a9de9248SMarcel Holtmann 	__u8     lmp_ver;
778a9de9248SMarcel Holtmann 	__le16   manufacturer;
779a9de9248SMarcel Holtmann 	__le16   lmp_subver;
78066c853ccSGustavo F. Padovan } __packed;
781a9de9248SMarcel Holtmann 
782a9de9248SMarcel Holtmann #define HCI_EV_QOS_SETUP_COMPLETE	0x0d
7831da177e4SLinus Torvalds struct hci_qos {
7841da177e4SLinus Torvalds 	__u8     service_type;
7851da177e4SLinus Torvalds 	__u32    token_rate;
7861da177e4SLinus Torvalds 	__u32    peak_bandwidth;
7871da177e4SLinus Torvalds 	__u32    latency;
7881da177e4SLinus Torvalds 	__u32    delay_variation;
78966c853ccSGustavo F. Padovan } __packed;
7901da177e4SLinus Torvalds struct hci_ev_qos_setup_complete {
7911da177e4SLinus Torvalds 	__u8     status;
7921ebb9252SMarcel Holtmann 	__le16   handle;
7931da177e4SLinus Torvalds 	struct   hci_qos qos;
79466c853ccSGustavo F. Padovan } __packed;
7951da177e4SLinus Torvalds 
796a9de9248SMarcel Holtmann #define HCI_EV_CMD_COMPLETE		0x0e
7971da177e4SLinus Torvalds struct hci_ev_cmd_complete {
7981da177e4SLinus Torvalds 	__u8     ncmd;
7991ebb9252SMarcel Holtmann 	__le16   opcode;
80066c853ccSGustavo F. Padovan } __packed;
8011da177e4SLinus Torvalds 
802a9de9248SMarcel Holtmann #define HCI_EV_CMD_STATUS		0x0f
8031da177e4SLinus Torvalds struct hci_ev_cmd_status {
8041da177e4SLinus Torvalds 	__u8     status;
8051da177e4SLinus Torvalds 	__u8     ncmd;
8061ebb9252SMarcel Holtmann 	__le16   opcode;
80766c853ccSGustavo F. Padovan } __packed;
8081da177e4SLinus Torvalds 
8091da177e4SLinus Torvalds #define HCI_EV_ROLE_CHANGE		0x12
8101da177e4SLinus Torvalds struct hci_ev_role_change {
8111da177e4SLinus Torvalds 	__u8     status;
8121da177e4SLinus Torvalds 	bdaddr_t bdaddr;
8131da177e4SLinus Torvalds 	__u8     role;
81466c853ccSGustavo F. Padovan } __packed;
8151da177e4SLinus Torvalds 
816a9de9248SMarcel Holtmann #define HCI_EV_NUM_COMP_PKTS		0x13
817a9de9248SMarcel Holtmann struct hci_ev_num_comp_pkts {
818a9de9248SMarcel Holtmann 	__u8     num_hndl;
819a9de9248SMarcel Holtmann 	/* variable length part */
82066c853ccSGustavo F. Padovan } __packed;
821a9de9248SMarcel Holtmann 
8221da177e4SLinus Torvalds #define HCI_EV_MODE_CHANGE		0x14
8231da177e4SLinus Torvalds struct hci_ev_mode_change {
8241da177e4SLinus Torvalds 	__u8     status;
8251ebb9252SMarcel Holtmann 	__le16   handle;
8261da177e4SLinus Torvalds 	__u8     mode;
8271ebb9252SMarcel Holtmann 	__le16   interval;
82866c853ccSGustavo F. Padovan } __packed;
8291da177e4SLinus Torvalds 
8301da177e4SLinus Torvalds #define HCI_EV_PIN_CODE_REQ		0x16
8311da177e4SLinus Torvalds struct hci_ev_pin_code_req {
8321da177e4SLinus Torvalds 	bdaddr_t bdaddr;
83366c853ccSGustavo F. Padovan } __packed;
8341da177e4SLinus Torvalds 
8351da177e4SLinus Torvalds #define HCI_EV_LINK_KEY_REQ		0x17
8361da177e4SLinus Torvalds struct hci_ev_link_key_req {
8371da177e4SLinus Torvalds 	bdaddr_t bdaddr;
83866c853ccSGustavo F. Padovan } __packed;
8391da177e4SLinus Torvalds 
8401da177e4SLinus Torvalds #define HCI_EV_LINK_KEY_NOTIFY		0x18
8411da177e4SLinus Torvalds struct hci_ev_link_key_notify {
8421da177e4SLinus Torvalds 	bdaddr_t bdaddr;
8431da177e4SLinus Torvalds 	__u8     link_key[16];
8441da177e4SLinus Torvalds 	__u8     key_type;
84566c853ccSGustavo F. Padovan } __packed;
8461da177e4SLinus Torvalds 
847a9de9248SMarcel Holtmann #define HCI_EV_CLOCK_OFFSET		0x1c
8481da177e4SLinus Torvalds struct hci_ev_clock_offset {
8491da177e4SLinus Torvalds 	__u8     status;
8501ebb9252SMarcel Holtmann 	__le16   handle;
8511ebb9252SMarcel Holtmann 	__le16   clock_offset;
85266c853ccSGustavo F. Padovan } __packed;
8531da177e4SLinus Torvalds 
854a8746417SMarcel Holtmann #define HCI_EV_PKT_TYPE_CHANGE		0x1d
855a8746417SMarcel Holtmann struct hci_ev_pkt_type_change {
856a8746417SMarcel Holtmann 	__u8     status;
857a8746417SMarcel Holtmann 	__le16   handle;
858a8746417SMarcel Holtmann 	__le16   pkt_type;
85966c853ccSGustavo F. Padovan } __packed;
860a8746417SMarcel Holtmann 
86185a1e930SMarcel Holtmann #define HCI_EV_PSCAN_REP_MODE		0x20
86285a1e930SMarcel Holtmann struct hci_ev_pscan_rep_mode {
86385a1e930SMarcel Holtmann 	bdaddr_t bdaddr;
86485a1e930SMarcel Holtmann 	__u8     pscan_rep_mode;
86566c853ccSGustavo F. Padovan } __packed;
86685a1e930SMarcel Holtmann 
867a9de9248SMarcel Holtmann #define HCI_EV_INQUIRY_RESULT_WITH_RSSI	0x22
868a9de9248SMarcel Holtmann struct inquiry_info_with_rssi {
869a9de9248SMarcel Holtmann 	bdaddr_t bdaddr;
870a9de9248SMarcel Holtmann 	__u8     pscan_rep_mode;
871a9de9248SMarcel Holtmann 	__u8     pscan_period_mode;
872a9de9248SMarcel Holtmann 	__u8     dev_class[3];
873a9de9248SMarcel Holtmann 	__le16   clock_offset;
874a9de9248SMarcel Holtmann 	__s8     rssi;
87566c853ccSGustavo F. Padovan } __packed;
876a9de9248SMarcel Holtmann struct inquiry_info_with_rssi_and_pscan_mode {
877a9de9248SMarcel Holtmann 	bdaddr_t bdaddr;
878a9de9248SMarcel Holtmann 	__u8     pscan_rep_mode;
879a9de9248SMarcel Holtmann 	__u8     pscan_period_mode;
880a9de9248SMarcel Holtmann 	__u8     pscan_mode;
881a9de9248SMarcel Holtmann 	__u8     dev_class[3];
882a9de9248SMarcel Holtmann 	__le16   clock_offset;
883a9de9248SMarcel Holtmann 	__s8     rssi;
88466c853ccSGustavo F. Padovan } __packed;
885a9de9248SMarcel Holtmann 
886a9de9248SMarcel Holtmann #define HCI_EV_REMOTE_EXT_FEATURES	0x23
887a9de9248SMarcel Holtmann struct hci_ev_remote_ext_features {
888a9de9248SMarcel Holtmann 	__u8     status;
889a9de9248SMarcel Holtmann 	__le16   handle;
890a9de9248SMarcel Holtmann 	__u8     page;
891a9de9248SMarcel Holtmann 	__u8     max_page;
892a9de9248SMarcel Holtmann 	__u8     features[8];
89366c853ccSGustavo F. Padovan } __packed;
894a9de9248SMarcel Holtmann 
895a9de9248SMarcel Holtmann #define HCI_EV_SYNC_CONN_COMPLETE	0x2c
896a9de9248SMarcel Holtmann struct hci_ev_sync_conn_complete {
897a9de9248SMarcel Holtmann 	__u8     status;
898a9de9248SMarcel Holtmann 	__le16   handle;
899a9de9248SMarcel Holtmann 	bdaddr_t bdaddr;
900a9de9248SMarcel Holtmann 	__u8     link_type;
901a9de9248SMarcel Holtmann 	__u8     tx_interval;
902a9de9248SMarcel Holtmann 	__u8     retrans_window;
903a9de9248SMarcel Holtmann 	__le16   rx_pkt_len;
904a9de9248SMarcel Holtmann 	__le16   tx_pkt_len;
905a9de9248SMarcel Holtmann 	__u8     air_mode;
90666c853ccSGustavo F. Padovan } __packed;
907a9de9248SMarcel Holtmann 
908a9de9248SMarcel Holtmann #define HCI_EV_SYNC_CONN_CHANGED	0x2d
909a9de9248SMarcel Holtmann struct hci_ev_sync_conn_changed {
910a9de9248SMarcel Holtmann 	__u8     status;
911a9de9248SMarcel Holtmann 	__le16   handle;
912a9de9248SMarcel Holtmann 	__u8     tx_interval;
913a9de9248SMarcel Holtmann 	__u8     retrans_window;
914a9de9248SMarcel Holtmann 	__le16   rx_pkt_len;
915a9de9248SMarcel Holtmann 	__le16   tx_pkt_len;
91666c853ccSGustavo F. Padovan } __packed;
917a9de9248SMarcel Holtmann 
918a9de9248SMarcel Holtmann #define HCI_EV_SNIFF_SUBRATE		0x2e
91904837f64SMarcel Holtmann struct hci_ev_sniff_subrate {
92004837f64SMarcel Holtmann 	__u8     status;
92104837f64SMarcel Holtmann 	__le16   handle;
92204837f64SMarcel Holtmann 	__le16   max_tx_latency;
92304837f64SMarcel Holtmann 	__le16   max_rx_latency;
92404837f64SMarcel Holtmann 	__le16   max_remote_timeout;
92504837f64SMarcel Holtmann 	__le16   max_local_timeout;
92666c853ccSGustavo F. Padovan } __packed;
92704837f64SMarcel Holtmann 
928a9de9248SMarcel Holtmann #define HCI_EV_EXTENDED_INQUIRY_RESULT	0x2f
929a9de9248SMarcel Holtmann struct extended_inquiry_info {
930a9de9248SMarcel Holtmann 	bdaddr_t bdaddr;
931a9de9248SMarcel Holtmann 	__u8     pscan_rep_mode;
932a9de9248SMarcel Holtmann 	__u8     pscan_period_mode;
933a9de9248SMarcel Holtmann 	__u8     dev_class[3];
934a9de9248SMarcel Holtmann 	__le16   clock_offset;
935a9de9248SMarcel Holtmann 	__s8     rssi;
936a9de9248SMarcel Holtmann 	__u8     data[240];
93766c853ccSGustavo F. Padovan } __packed;
938a9de9248SMarcel Holtmann 
9390493684eSMarcel Holtmann #define HCI_EV_IO_CAPA_REQUEST		0x31
9400493684eSMarcel Holtmann struct hci_ev_io_capa_request {
9410493684eSMarcel Holtmann 	bdaddr_t bdaddr;
94266c853ccSGustavo F. Padovan } __packed;
9430493684eSMarcel Holtmann 
94403b555e1SJohan Hedberg #define HCI_EV_IO_CAPA_REPLY		0x32
94503b555e1SJohan Hedberg struct hci_ev_io_capa_reply {
94603b555e1SJohan Hedberg 	bdaddr_t bdaddr;
94703b555e1SJohan Hedberg 	__u8     capability;
94803b555e1SJohan Hedberg 	__u8     oob_data;
94903b555e1SJohan Hedberg 	__u8     authentication;
95003b555e1SJohan Hedberg } __packed;
95103b555e1SJohan Hedberg 
952a5c29683SJohan Hedberg #define HCI_EV_USER_CONFIRM_REQUEST	0x33
953a5c29683SJohan Hedberg struct hci_ev_user_confirm_req {
954a5c29683SJohan Hedberg 	bdaddr_t	bdaddr;
955a5c29683SJohan Hedberg 	__le32		passkey;
956a5c29683SJohan Hedberg } __packed;
957a5c29683SJohan Hedberg 
9580493684eSMarcel Holtmann #define HCI_EV_SIMPLE_PAIR_COMPLETE	0x36
9590493684eSMarcel Holtmann struct hci_ev_simple_pair_complete {
9600493684eSMarcel Holtmann 	__u8     status;
9610493684eSMarcel Holtmann 	bdaddr_t bdaddr;
96266c853ccSGustavo F. Padovan } __packed;
9630493684eSMarcel Holtmann 
96441a96212SMarcel Holtmann #define HCI_EV_REMOTE_HOST_FEATURES	0x3d
96541a96212SMarcel Holtmann struct hci_ev_remote_host_features {
96641a96212SMarcel Holtmann 	bdaddr_t bdaddr;
96741a96212SMarcel Holtmann 	__u8     features[8];
96866c853ccSGustavo F. Padovan } __packed;
96941a96212SMarcel Holtmann 
97063185f64SVille Tervo #define HCI_EV_LE_META			0x3e
97163185f64SVille Tervo struct hci_ev_le_meta {
97263185f64SVille Tervo 	__u8     subevent;
97363185f64SVille Tervo } __packed;
97463185f64SVille Tervo 
97563185f64SVille Tervo /* Low energy meta events */
97663185f64SVille Tervo #define HCI_EV_LE_CONN_COMPLETE		0x01
97763185f64SVille Tervo struct hci_ev_le_conn_complete {
97863185f64SVille Tervo 	__u8     status;
97963185f64SVille Tervo 	__le16   handle;
98063185f64SVille Tervo 	__u8     role;
98163185f64SVille Tervo 	__u8     bdaddr_type;
98263185f64SVille Tervo 	bdaddr_t bdaddr;
98363185f64SVille Tervo 	__le16   interval;
98463185f64SVille Tervo 	__le16   latency;
98563185f64SVille Tervo 	__le16   supervision_timeout;
98663185f64SVille Tervo 	__u8     clk_accurancy;
98763185f64SVille Tervo } __packed;
98863185f64SVille Tervo 
9891da177e4SLinus Torvalds /* Internal events generated by Bluetooth stack */
990a9de9248SMarcel Holtmann #define HCI_EV_STACK_INTERNAL	0xfd
9911da177e4SLinus Torvalds struct hci_ev_stack_internal {
9921da177e4SLinus Torvalds 	__u16    type;
9931da177e4SLinus Torvalds 	__u8     data[0];
99466c853ccSGustavo F. Padovan } __packed;
9951da177e4SLinus Torvalds 
9961da177e4SLinus Torvalds #define HCI_EV_SI_DEVICE	0x01
9971da177e4SLinus Torvalds struct hci_ev_si_device {
9981da177e4SLinus Torvalds 	__u16    event;
9991da177e4SLinus Torvalds 	__u16    dev_id;
100066c853ccSGustavo F. Padovan } __packed;
10011da177e4SLinus Torvalds 
10021da177e4SLinus Torvalds #define HCI_EV_SI_SECURITY	0x02
10031da177e4SLinus Torvalds struct hci_ev_si_security {
10041da177e4SLinus Torvalds 	__u16    event;
10051da177e4SLinus Torvalds 	__u16    proto;
10061da177e4SLinus Torvalds 	__u16    subproto;
10071da177e4SLinus Torvalds 	__u8     incoming;
100866c853ccSGustavo F. Padovan } __packed;
10091da177e4SLinus Torvalds 
10101da177e4SLinus Torvalds /* ---- HCI Packet structures ---- */
10111da177e4SLinus Torvalds #define HCI_COMMAND_HDR_SIZE 3
10121da177e4SLinus Torvalds #define HCI_EVENT_HDR_SIZE   2
10131da177e4SLinus Torvalds #define HCI_ACL_HDR_SIZE     4
10141da177e4SLinus Torvalds #define HCI_SCO_HDR_SIZE     3
10151da177e4SLinus Torvalds 
10161da177e4SLinus Torvalds struct hci_command_hdr {
10171ebb9252SMarcel Holtmann 	__le16	opcode;		/* OCF & OGF */
10181da177e4SLinus Torvalds 	__u8	plen;
101966c853ccSGustavo F. Padovan } __packed;
10201da177e4SLinus Torvalds 
10211da177e4SLinus Torvalds struct hci_event_hdr {
10221da177e4SLinus Torvalds 	__u8	evt;
10231da177e4SLinus Torvalds 	__u8	plen;
102466c853ccSGustavo F. Padovan } __packed;
10251da177e4SLinus Torvalds 
10261da177e4SLinus Torvalds struct hci_acl_hdr {
10271ebb9252SMarcel Holtmann 	__le16	handle;		/* Handle & Flags(PB, BC) */
10281ebb9252SMarcel Holtmann 	__le16	dlen;
102966c853ccSGustavo F. Padovan } __packed;
10301da177e4SLinus Torvalds 
10311da177e4SLinus Torvalds struct hci_sco_hdr {
10321ebb9252SMarcel Holtmann 	__le16	handle;
10331da177e4SLinus Torvalds 	__u8	dlen;
103466c853ccSGustavo F. Padovan } __packed;
10351da177e4SLinus Torvalds 
10362a123b86SArnaldo Carvalho de Melo #ifdef __KERNEL__
10372a123b86SArnaldo Carvalho de Melo #include <linux/skbuff.h>
10382a123b86SArnaldo Carvalho de Melo static inline struct hci_event_hdr *hci_event_hdr(const struct sk_buff *skb)
10392a123b86SArnaldo Carvalho de Melo {
10402a123b86SArnaldo Carvalho de Melo 	return (struct hci_event_hdr *) skb->data;
10412a123b86SArnaldo Carvalho de Melo }
10422a123b86SArnaldo Carvalho de Melo 
10432a123b86SArnaldo Carvalho de Melo static inline struct hci_acl_hdr *hci_acl_hdr(const struct sk_buff *skb)
10442a123b86SArnaldo Carvalho de Melo {
10452a123b86SArnaldo Carvalho de Melo 	return (struct hci_acl_hdr *) skb->data;
10462a123b86SArnaldo Carvalho de Melo }
10472a123b86SArnaldo Carvalho de Melo 
10482a123b86SArnaldo Carvalho de Melo static inline struct hci_sco_hdr *hci_sco_hdr(const struct sk_buff *skb)
10492a123b86SArnaldo Carvalho de Melo {
10502a123b86SArnaldo Carvalho de Melo 	return (struct hci_sco_hdr *) skb->data;
10512a123b86SArnaldo Carvalho de Melo }
10522a123b86SArnaldo Carvalho de Melo #endif
10532a123b86SArnaldo Carvalho de Melo 
10541da177e4SLinus Torvalds /* Command opcode pack/unpack */
10551da177e4SLinus Torvalds #define hci_opcode_pack(ogf, ocf)	(__u16) ((ocf & 0x03ff)|(ogf << 10))
10561da177e4SLinus Torvalds #define hci_opcode_ogf(op)		(op >> 10)
10571da177e4SLinus Torvalds #define hci_opcode_ocf(op)		(op & 0x03ff)
10581da177e4SLinus Torvalds 
10591da177e4SLinus Torvalds /* ACL handle and flags pack/unpack */
10601da177e4SLinus Torvalds #define hci_handle_pack(h, f)	(__u16) ((h & 0x0fff)|(f << 12))
10611da177e4SLinus Torvalds #define hci_handle(h)		(h & 0x0fff)
10621da177e4SLinus Torvalds #define hci_flags(h)		(h >> 12)
10631da177e4SLinus Torvalds 
10641da177e4SLinus Torvalds /* ---- HCI Sockets ---- */
10651da177e4SLinus Torvalds 
10661da177e4SLinus Torvalds /* Socket options */
10671da177e4SLinus Torvalds #define HCI_DATA_DIR	1
10681da177e4SLinus Torvalds #define HCI_FILTER	2
10691da177e4SLinus Torvalds #define HCI_TIME_STAMP	3
10701da177e4SLinus Torvalds 
10711da177e4SLinus Torvalds /* CMSG flags */
10721da177e4SLinus Torvalds #define HCI_CMSG_DIR	0x0001
10731da177e4SLinus Torvalds #define HCI_CMSG_TSTAMP	0x0002
10741da177e4SLinus Torvalds 
10751da177e4SLinus Torvalds struct sockaddr_hci {
10761da177e4SLinus Torvalds 	sa_family_t    hci_family;
10771da177e4SLinus Torvalds 	unsigned short hci_dev;
1078c02178d2SJohan Hedberg 	unsigned short hci_channel;
10791da177e4SLinus Torvalds };
10801da177e4SLinus Torvalds #define HCI_DEV_NONE	0xffff
10811da177e4SLinus Torvalds 
1082c02178d2SJohan Hedberg #define HCI_CHANNEL_RAW		0
1083c02178d2SJohan Hedberg #define HCI_CHANNEL_CONTROL	1
1084c02178d2SJohan Hedberg 
10851da177e4SLinus Torvalds struct hci_filter {
10861da177e4SLinus Torvalds 	unsigned long type_mask;
10871da177e4SLinus Torvalds 	unsigned long event_mask[2];
1088905f3ed6SAl Viro 	__le16 opcode;
10891da177e4SLinus Torvalds };
10901da177e4SLinus Torvalds 
10911da177e4SLinus Torvalds struct hci_ufilter {
10921da177e4SLinus Torvalds 	__u32  type_mask;
10931da177e4SLinus Torvalds 	__u32  event_mask[2];
1094905f3ed6SAl Viro 	__le16 opcode;
10951da177e4SLinus Torvalds };
10961da177e4SLinus Torvalds 
10971da177e4SLinus Torvalds #define HCI_FLT_TYPE_BITS	31
10981da177e4SLinus Torvalds #define HCI_FLT_EVENT_BITS	63
10991da177e4SLinus Torvalds #define HCI_FLT_OGF_BITS	63
11001da177e4SLinus Torvalds #define HCI_FLT_OCF_BITS	127
11011da177e4SLinus Torvalds 
11021da177e4SLinus Torvalds /* ---- HCI Ioctl requests structures ---- */
11031da177e4SLinus Torvalds struct hci_dev_stats {
11041da177e4SLinus Torvalds 	__u32 err_rx;
11051da177e4SLinus Torvalds 	__u32 err_tx;
11061da177e4SLinus Torvalds 	__u32 cmd_tx;
11071da177e4SLinus Torvalds 	__u32 evt_rx;
11081da177e4SLinus Torvalds 	__u32 acl_tx;
11091da177e4SLinus Torvalds 	__u32 acl_rx;
11101da177e4SLinus Torvalds 	__u32 sco_tx;
11111da177e4SLinus Torvalds 	__u32 sco_rx;
11121da177e4SLinus Torvalds 	__u32 byte_rx;
11131da177e4SLinus Torvalds 	__u32 byte_tx;
11141da177e4SLinus Torvalds };
11151da177e4SLinus Torvalds 
11161da177e4SLinus Torvalds struct hci_dev_info {
11171da177e4SLinus Torvalds 	__u16 dev_id;
11181da177e4SLinus Torvalds 	char  name[8];
11191da177e4SLinus Torvalds 
11201da177e4SLinus Torvalds 	bdaddr_t bdaddr;
11211da177e4SLinus Torvalds 
11221da177e4SLinus Torvalds 	__u32 flags;
11231da177e4SLinus Torvalds 	__u8  type;
11241da177e4SLinus Torvalds 
11251da177e4SLinus Torvalds 	__u8  features[8];
11261da177e4SLinus Torvalds 
11271da177e4SLinus Torvalds 	__u32 pkt_type;
11281da177e4SLinus Torvalds 	__u32 link_policy;
11291da177e4SLinus Torvalds 	__u32 link_mode;
11301da177e4SLinus Torvalds 
11311da177e4SLinus Torvalds 	__u16 acl_mtu;
11321da177e4SLinus Torvalds 	__u16 acl_pkts;
11331da177e4SLinus Torvalds 	__u16 sco_mtu;
11341da177e4SLinus Torvalds 	__u16 sco_pkts;
11351da177e4SLinus Torvalds 
11361da177e4SLinus Torvalds 	struct hci_dev_stats stat;
11371da177e4SLinus Torvalds };
11381da177e4SLinus Torvalds 
11391da177e4SLinus Torvalds struct hci_conn_info {
11401da177e4SLinus Torvalds 	__u16    handle;
11411da177e4SLinus Torvalds 	bdaddr_t bdaddr;
11421da177e4SLinus Torvalds 	__u8     type;
11431da177e4SLinus Torvalds 	__u8     out;
11441da177e4SLinus Torvalds 	__u16    state;
11451da177e4SLinus Torvalds 	__u32    link_mode;
11461da177e4SLinus Torvalds };
11471da177e4SLinus Torvalds 
11481da177e4SLinus Torvalds struct hci_dev_req {
11491da177e4SLinus Torvalds 	__u16  dev_id;
11501da177e4SLinus Torvalds 	__u32  dev_opt;
11511da177e4SLinus Torvalds };
11521da177e4SLinus Torvalds 
11531da177e4SLinus Torvalds struct hci_dev_list_req {
11541da177e4SLinus Torvalds 	__u16  dev_num;
11551da177e4SLinus Torvalds 	struct hci_dev_req dev_req[0];	/* hci_dev_req structures */
11561da177e4SLinus Torvalds };
11571da177e4SLinus Torvalds 
11581da177e4SLinus Torvalds struct hci_conn_list_req {
11591da177e4SLinus Torvalds 	__u16  dev_id;
11601da177e4SLinus Torvalds 	__u16  conn_num;
11611da177e4SLinus Torvalds 	struct hci_conn_info conn_info[0];
11621da177e4SLinus Torvalds };
11631da177e4SLinus Torvalds 
11641da177e4SLinus Torvalds struct hci_conn_info_req {
11651da177e4SLinus Torvalds 	bdaddr_t bdaddr;
11661da177e4SLinus Torvalds 	__u8     type;
11671da177e4SLinus Torvalds 	struct   hci_conn_info conn_info[0];
11681da177e4SLinus Torvalds };
11691da177e4SLinus Torvalds 
117040be492fSMarcel Holtmann struct hci_auth_info_req {
117140be492fSMarcel Holtmann 	bdaddr_t bdaddr;
117240be492fSMarcel Holtmann 	__u8     type;
117340be492fSMarcel Holtmann };
117440be492fSMarcel Holtmann 
11751da177e4SLinus Torvalds struct hci_inquiry_req {
11761da177e4SLinus Torvalds 	__u16 dev_id;
11771da177e4SLinus Torvalds 	__u16 flags;
11781da177e4SLinus Torvalds 	__u8  lap[3];
11791da177e4SLinus Torvalds 	__u8  length;
11801da177e4SLinus Torvalds 	__u8  num_rsp;
11811da177e4SLinus Torvalds };
11821da177e4SLinus Torvalds #define IREQ_CACHE_FLUSH 0x0001
11831da177e4SLinus Torvalds 
11841da177e4SLinus Torvalds #endif /* __HCI_H */
1185