Johan Hedberg | c02178d | 2010-12-08 00:21:05 +0200 | [diff] [blame] | 1 | /* |
| 2 | BlueZ - Bluetooth protocol stack for Linux |
| 3 | |
| 4 | Copyright (C) 2010 Nokia Corporation |
| 5 | |
| 6 | This program is free software; you can redistribute it and/or modify |
| 7 | it under the terms of the GNU General Public License version 2 as |
| 8 | published by the Free Software Foundation; |
| 9 | |
| 10 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
| 11 | OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 12 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. |
| 13 | IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY |
| 14 | CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES |
| 15 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 16 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 17 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 18 | |
| 19 | ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS, |
| 20 | COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS |
| 21 | SOFTWARE IS DISCLAIMED. |
| 22 | */ |
| 23 | |
| 24 | struct mgmt_hdr { |
| 25 | __le16 opcode; |
| 26 | __le16 len; |
| 27 | } __packed; |
| 28 | #define MGMT_HDR_SIZE 4 |
| 29 | |
Johan Hedberg | 02d9812 | 2010-12-13 21:07:04 +0200 | [diff] [blame] | 30 | #define MGMT_OP_READ_VERSION 0x0001 |
| 31 | struct mgmt_rp_read_version { |
| 32 | __u8 version; |
| 33 | __le16 revision; |
| 34 | } __packed; |
| 35 | |
Johan Hedberg | faba42e | 2010-12-13 21:07:05 +0200 | [diff] [blame] | 36 | #define MGMT_OP_READ_INDEX_LIST 0x0003 |
| 37 | struct mgmt_rp_read_index_list { |
| 38 | __le16 num_controllers; |
| 39 | __le16 index[0]; |
| 40 | } __packed; |
| 41 | |
Johan Hedberg | f7b64e6 | 2010-12-13 21:07:06 +0200 | [diff] [blame] | 42 | #define MGMT_OP_READ_INFO 0x0004 |
| 43 | struct mgmt_cp_read_info { |
| 44 | __le16 index; |
| 45 | } __packed; |
| 46 | struct mgmt_rp_read_info { |
| 47 | __le16 index; |
| 48 | __u8 type; |
| 49 | __u8 powered; |
Johan Hedberg | 9fbcbb4 | 2010-12-30 00:18:33 +0200 | [diff] [blame] | 50 | __u8 connectable; |
Johan Hedberg | f7b64e6 | 2010-12-13 21:07:06 +0200 | [diff] [blame] | 51 | __u8 discoverable; |
| 52 | __u8 pairable; |
| 53 | __u8 sec_mode; |
| 54 | bdaddr_t bdaddr; |
| 55 | __u8 dev_class[3]; |
| 56 | __u8 features[8]; |
| 57 | __u16 manufacturer; |
| 58 | __u8 hci_ver; |
| 59 | __u16 hci_rev; |
| 60 | } __packed; |
| 61 | |
Johan Hedberg | 72a734e | 2010-12-30 00:38:22 +0200 | [diff] [blame] | 62 | struct mgmt_mode { |
| 63 | __le16 index; |
| 64 | __u8 val; |
| 65 | } __packed; |
| 66 | |
Johan Hedberg | eec8d2b | 2010-12-16 10:17:38 +0200 | [diff] [blame] | 67 | #define MGMT_OP_SET_POWERED 0x0005 |
Johan Hedberg | eec8d2b | 2010-12-16 10:17:38 +0200 | [diff] [blame] | 68 | |
Johan Hedberg | 73f22f6 | 2010-12-29 16:00:25 +0200 | [diff] [blame] | 69 | #define MGMT_OP_SET_DISCOVERABLE 0x0006 |
Johan Hedberg | 73f22f6 | 2010-12-29 16:00:25 +0200 | [diff] [blame] | 70 | |
Johan Hedberg | 9fbcbb4 | 2010-12-30 00:18:33 +0200 | [diff] [blame] | 71 | #define MGMT_OP_SET_CONNECTABLE 0x0007 |
Johan Hedberg | 9fbcbb4 | 2010-12-30 00:18:33 +0200 | [diff] [blame] | 72 | |
Johan Hedberg | c542a06 | 2011-01-26 13:11:03 +0200 | [diff] [blame] | 73 | #define MGMT_OP_SET_PAIRABLE 0x0008 |
| 74 | |
Johan Hedberg | 2aeb9a1 | 2011-01-04 12:08:51 +0200 | [diff] [blame^] | 75 | #define MGMT_OP_ADD_UUID 0x0009 |
| 76 | struct mgmt_cp_add_uuid { |
| 77 | __le16 index; |
| 78 | __u8 uuid[16]; |
| 79 | } __packed; |
| 80 | |
| 81 | #define MGMT_OP_REMOVE_UUID 0x000A |
| 82 | struct mgmt_cp_remove_uuid { |
| 83 | __le16 index; |
| 84 | __u8 uuid[16]; |
| 85 | } __packed; |
| 86 | |
Johan Hedberg | c02178d | 2010-12-08 00:21:05 +0200 | [diff] [blame] | 87 | #define MGMT_EV_CMD_COMPLETE 0x0001 |
| 88 | struct mgmt_ev_cmd_complete { |
| 89 | __le16 opcode; |
| 90 | __u8 data[0]; |
| 91 | } __packed; |
| 92 | |
| 93 | #define MGMT_EV_CMD_STATUS 0x0002 |
| 94 | struct mgmt_ev_cmd_status { |
| 95 | __u8 status; |
| 96 | __le16 opcode; |
| 97 | } __packed; |
| 98 | |
| 99 | #define MGMT_EV_CONTROLLER_ERROR 0x0003 |
| 100 | struct mgmt_ev_controller_error { |
| 101 | __le16 index; |
| 102 | __u8 error_code; |
| 103 | } __packed; |
Johan Hedberg | c71e97b | 2010-12-13 21:07:07 +0200 | [diff] [blame] | 104 | |
| 105 | #define MGMT_EV_INDEX_ADDED 0x0004 |
| 106 | struct mgmt_ev_index_added { |
| 107 | __le16 index; |
| 108 | } __packed; |
| 109 | |
| 110 | #define MGMT_EV_INDEX_REMOVED 0x0005 |
| 111 | struct mgmt_ev_index_removed { |
| 112 | __le16 index; |
| 113 | } __packed; |
Johan Hedberg | 5add6af | 2010-12-16 10:00:37 +0200 | [diff] [blame] | 114 | |
| 115 | #define MGMT_EV_POWERED 0x0006 |
Johan Hedberg | 73f22f6 | 2010-12-29 16:00:25 +0200 | [diff] [blame] | 116 | |
| 117 | #define MGMT_EV_DISCOVERABLE 0x0007 |
Johan Hedberg | 9fbcbb4 | 2010-12-30 00:18:33 +0200 | [diff] [blame] | 118 | |
| 119 | #define MGMT_EV_CONNECTABLE 0x0008 |
Johan Hedberg | c542a06 | 2011-01-26 13:11:03 +0200 | [diff] [blame] | 120 | |
| 121 | #define MGMT_EV_PAIRABLE 0x0009 |