mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-26 14:14:01 +08:00
1aff6f0949
This patch adds the possibility for user space to fully control the Class of Device value of local adapters. To control the service class bits each UUID that's added comes with a service class "hint" which acts as a mask of bits that the UUID needs to have enabled. The set_service_cache management command is used to make sure we queue up all UUID changes as user space initializes its drivers and then send a single HCI_Write_Class_of_Device command when initialization is complete. Signed-off-by: Johan Hedberg <johan.hedberg@nokia.com> Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
136 lines
3.0 KiB
C
136 lines
3.0 KiB
C
/*
|
|
BlueZ - Bluetooth protocol stack for Linux
|
|
|
|
Copyright (C) 2010 Nokia Corporation
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License version 2 as
|
|
published by the Free Software Foundation;
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
|
|
IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
|
|
CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
|
|
COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
|
|
SOFTWARE IS DISCLAIMED.
|
|
*/
|
|
|
|
struct mgmt_hdr {
|
|
__le16 opcode;
|
|
__le16 len;
|
|
} __packed;
|
|
#define MGMT_HDR_SIZE 4
|
|
|
|
#define MGMT_OP_READ_VERSION 0x0001
|
|
struct mgmt_rp_read_version {
|
|
__u8 version;
|
|
__le16 revision;
|
|
} __packed;
|
|
|
|
#define MGMT_OP_READ_INDEX_LIST 0x0003
|
|
struct mgmt_rp_read_index_list {
|
|
__le16 num_controllers;
|
|
__le16 index[0];
|
|
} __packed;
|
|
|
|
#define MGMT_OP_READ_INFO 0x0004
|
|
struct mgmt_cp_read_info {
|
|
__le16 index;
|
|
} __packed;
|
|
struct mgmt_rp_read_info {
|
|
__le16 index;
|
|
__u8 type;
|
|
__u8 powered;
|
|
__u8 connectable;
|
|
__u8 discoverable;
|
|
__u8 pairable;
|
|
__u8 sec_mode;
|
|
bdaddr_t bdaddr;
|
|
__u8 dev_class[3];
|
|
__u8 features[8];
|
|
__u16 manufacturer;
|
|
__u8 hci_ver;
|
|
__u16 hci_rev;
|
|
} __packed;
|
|
|
|
struct mgmt_mode {
|
|
__le16 index;
|
|
__u8 val;
|
|
} __packed;
|
|
|
|
#define MGMT_OP_SET_POWERED 0x0005
|
|
|
|
#define MGMT_OP_SET_DISCOVERABLE 0x0006
|
|
|
|
#define MGMT_OP_SET_CONNECTABLE 0x0007
|
|
|
|
#define MGMT_OP_SET_PAIRABLE 0x0008
|
|
|
|
#define MGMT_OP_ADD_UUID 0x0009
|
|
struct mgmt_cp_add_uuid {
|
|
__le16 index;
|
|
__u8 uuid[16];
|
|
__u8 svc_hint;
|
|
} __packed;
|
|
|
|
#define MGMT_OP_REMOVE_UUID 0x000A
|
|
struct mgmt_cp_remove_uuid {
|
|
__le16 index;
|
|
__u8 uuid[16];
|
|
} __packed;
|
|
|
|
#define MGMT_OP_SET_DEV_CLASS 0x000B
|
|
struct mgmt_cp_set_dev_class {
|
|
__le16 index;
|
|
__u8 major;
|
|
__u8 minor;
|
|
} __packed;
|
|
|
|
#define MGMT_OP_SET_SERVICE_CACHE 0x000C
|
|
struct mgmt_cp_set_service_cache {
|
|
__le16 index;
|
|
__u8 enable;
|
|
} __packed;
|
|
|
|
#define MGMT_EV_CMD_COMPLETE 0x0001
|
|
struct mgmt_ev_cmd_complete {
|
|
__le16 opcode;
|
|
__u8 data[0];
|
|
} __packed;
|
|
|
|
#define MGMT_EV_CMD_STATUS 0x0002
|
|
struct mgmt_ev_cmd_status {
|
|
__u8 status;
|
|
__le16 opcode;
|
|
} __packed;
|
|
|
|
#define MGMT_EV_CONTROLLER_ERROR 0x0003
|
|
struct mgmt_ev_controller_error {
|
|
__le16 index;
|
|
__u8 error_code;
|
|
} __packed;
|
|
|
|
#define MGMT_EV_INDEX_ADDED 0x0004
|
|
struct mgmt_ev_index_added {
|
|
__le16 index;
|
|
} __packed;
|
|
|
|
#define MGMT_EV_INDEX_REMOVED 0x0005
|
|
struct mgmt_ev_index_removed {
|
|
__le16 index;
|
|
} __packed;
|
|
|
|
#define MGMT_EV_POWERED 0x0006
|
|
|
|
#define MGMT_EV_DISCOVERABLE 0x0007
|
|
|
|
#define MGMT_EV_CONNECTABLE 0x0008
|
|
|
|
#define MGMT_EV_PAIRABLE 0x0009
|