blob: 40ccc604b6232f03b201540f60305537c0a5afd4 [file] [log] [blame]
Andre Eisenbach05f49542012-09-18 12:15:26 -07001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_INCLUDE_BLUETOOTH_H
18#define ANDROID_INCLUDE_BLUETOOTH_H
19
Sharvil Nanavati3bd8cba2014-05-30 16:43:38 -070020#include <stdbool.h>
Andre Eisenbach05f49542012-09-18 12:15:26 -070021#include <stdint.h>
22#include <sys/cdefs.h>
23#include <sys/types.h>
24
Jakub Pawlowskieab6b6e2017-07-11 09:25:44 -070025#include <bluetooth/uuid.h>
Jakub Pawlowskibec70c62017-07-05 11:13:00 -070026#include <raw_address.h>
27
Andre Eisenbach05f49542012-09-18 12:15:26 -070028__BEGIN_DECLS
29
Jakub Pawlowski5d5996a2017-10-16 20:10:09 -070030#define BLUETOOTH_INTERFACE_STRING "bluetoothInterface"
Andre Eisenbach05f49542012-09-18 12:15:26 -070031
Jack He9213f5b2017-05-13 13:54:26 -070032/** Bluetooth profile interface IDs */
Andre Eisenbach05f49542012-09-18 12:15:26 -070033
34#define BT_PROFILE_HANDSFREE_ID "handsfree"
Hemant Guptae7737c82013-08-19 18:02:54 +053035#define BT_PROFILE_HANDSFREE_CLIENT_ID "handsfree_client"
Andre Eisenbach05f49542012-09-18 12:15:26 -070036#define BT_PROFILE_ADVANCED_AUDIO_ID "a2dp"
Mike Lockwood21e50b12014-06-07 14:05:22 -070037#define BT_PROFILE_ADVANCED_AUDIO_SINK_ID "a2dp_sink"
Andre Eisenbach05f49542012-09-18 12:15:26 -070038#define BT_PROFILE_HEALTH_ID "health"
39#define BT_PROFILE_SOCKETS_ID "socket"
40#define BT_PROFILE_HIDHOST_ID "hidhost"
Hemant Gupta7ed5a7f2014-04-18 12:18:16 +053041#define BT_PROFILE_HIDDEV_ID "hiddev"
Andre Eisenbach05f49542012-09-18 12:15:26 -070042#define BT_PROFILE_PAN_ID "pan"
Hemant Gupta053cccf2014-04-18 12:25:24 +053043#define BT_PROFILE_MAP_CLIENT_ID "map_client"
kschulz9a92a7b2015-03-06 09:15:43 +010044#define BT_PROFILE_SDP_CLIENT_ID "sdp"
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -080045#define BT_PROFILE_GATT_ID "gatt"
Ravi Nagarajan482ba782013-02-26 10:34:41 -080046#define BT_PROFILE_AV_RC_ID "avrcp"
Mike Lockwood7da4cb82014-06-02 16:20:51 -070047#define BT_PROFILE_AV_RC_CTRL_ID "avrcp_ctrl"
Andre Eisenbach05f49542012-09-18 12:15:26 -070048
Jack He9213f5b2017-05-13 13:54:26 -070049/** Bluetooth test interface IDs */
50#define BT_TEST_INTERFACE_MCAP_ID "mcap_test"
51
Andre Eisenbach05f49542012-09-18 12:15:26 -070052/** Bluetooth Device Name */
53typedef struct {
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -080054 uint8_t name[249];
Andre Eisenbach05f49542012-09-18 12:15:26 -070055} __attribute__((packed))bt_bdname_t;
56
57/** Bluetooth Adapter Visibility Modes*/
58typedef enum {
59 BT_SCAN_MODE_NONE,
60 BT_SCAN_MODE_CONNECTABLE,
61 BT_SCAN_MODE_CONNECTABLE_DISCOVERABLE
62} bt_scan_mode_t;
63
64/** Bluetooth Adapter State */
65typedef enum {
66 BT_STATE_OFF,
67 BT_STATE_ON
68} bt_state_t;
69
70/** Bluetooth Error Status */
71/** We need to build on this */
72
73typedef enum {
74 BT_STATUS_SUCCESS,
75 BT_STATUS_FAIL,
76 BT_STATUS_NOT_READY,
77 BT_STATUS_NOMEM,
78 BT_STATUS_BUSY,
79 BT_STATUS_DONE, /* request already completed */
80 BT_STATUS_UNSUPPORTED,
81 BT_STATUS_PARM_INVALID,
82 BT_STATUS_UNHANDLED,
83 BT_STATUS_AUTH_FAILURE,
Hemant Gupta4d864552013-07-31 19:14:02 +053084 BT_STATUS_RMT_DEV_DOWN,
Andre Eisenbachf65d1252016-03-17 16:46:39 -070085 BT_STATUS_AUTH_REJECTED,
86 BT_STATUS_JNI_ENVIRONMENT_ERROR,
87 BT_STATUS_JNI_THREAD_ATTACH_ERROR,
88 BT_STATUS_WAKELOCK_ERROR
Andre Eisenbach05f49542012-09-18 12:15:26 -070089} bt_status_t;
90
91/** Bluetooth PinKey Code */
92typedef struct {
93 uint8_t pin[16];
94} __attribute__((packed))bt_pin_code_t;
95
Satya Callojibe7f0442014-07-03 10:59:16 -070096typedef struct {
97 uint8_t status;
98 uint8_t ctrl_state; /* stack reported state */
99 uint64_t tx_time; /* in ms */
100 uint64_t rx_time; /* in ms */
101 uint64_t idle_time; /* in ms */
102 uint64_t energy_used; /* a product of mA, V and ms */
103} __attribute__((packed))bt_activity_energy_info;
104
Adam Lesinskie2d316d2015-12-03 11:40:47 -0800105typedef struct {
106 int32_t app_uid;
107 uint64_t tx_bytes;
108 uint64_t rx_bytes;
109} __attribute__((packed))bt_uid_traffic_t;
110
Andre Eisenbach05f49542012-09-18 12:15:26 -0700111/** Bluetooth Adapter Discovery state */
112typedef enum {
113 BT_DISCOVERY_STOPPED,
114 BT_DISCOVERY_STARTED
115} bt_discovery_state_t;
116
117/** Bluetooth ACL connection state */
118typedef enum {
119 BT_ACL_STATE_CONNECTED,
120 BT_ACL_STATE_DISCONNECTED
121} bt_acl_state_t;
122
Andre Eisenbach05f49542012-09-18 12:15:26 -0700123/** Bluetooth SDP service record */
124typedef struct
125{
Jakub Pawlowskieab6b6e2017-07-11 09:25:44 -0700126 bluetooth::Uuid uuid;
Andre Eisenbach05f49542012-09-18 12:15:26 -0700127 uint16_t channel;
128 char name[256]; // what's the maximum length
129} bt_service_record_t;
130
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -0800131
132/** Bluetooth Remote Version info */
133typedef struct
134{
135 int version;
136 int sub_ver;
137 int manufacturer;
138} bt_remote_version_t;
139
Ganesh Ganapathi Batta460343a2014-05-27 16:03:11 -0700140typedef struct
141{
Satya Callojia8b49d32015-02-10 09:20:07 -0800142 uint16_t version_supported;
Ganesh Ganapathi Batta460343a2014-05-27 16:03:11 -0700143 uint8_t local_privacy_enabled;
144 uint8_t max_adv_instance;
145 uint8_t rpa_offload_supported;
146 uint8_t max_irk_list_size;
147 uint8_t max_adv_filter_supported;
Satya Callojibe7f0442014-07-03 10:59:16 -0700148 uint8_t activity_energy_info_supported;
Satya Callojia8b49d32015-02-10 09:20:07 -0800149 uint16_t scan_result_storage_size;
150 uint16_t total_trackable_advertisers;
Satya Calloji51225022015-03-31 13:58:21 -0700151 bool extended_scan_support;
152 bool debug_logging_supported;
Jakub Pawlowski0a660af2017-03-09 18:16:56 -0800153 bool le_2m_phy_supported;
154 bool le_coded_phy_supported;
155 bool le_extended_advertising_supported;
156 bool le_periodic_advertising_supported;
Jakub Pawlowski696f6992017-03-16 18:20:49 -0700157 uint16_t le_maximum_advertising_data_length;
Ganesh Ganapathi Batta460343a2014-05-27 16:03:11 -0700158}bt_local_le_features_t;
159
Andre Eisenbach05f49542012-09-18 12:15:26 -0700160/* Bluetooth Adapter and Remote Device property types */
161typedef enum {
Jakub Pawlowskieab6b6e2017-07-11 09:25:44 -0700162 /* Properties common to both adapter and remote device */
163 /**
164 * Description - Bluetooth Device Name
165 * Access mode - Adapter name can be GET/SET. Remote device can be GET
166 * Data type - bt_bdname_t
167 */
168 BT_PROPERTY_BDNAME = 0x1,
169 /**
170 * Description - Bluetooth Device Address
171 * Access mode - Only GET.
172 * Data type - RawAddress
173 */
174 BT_PROPERTY_BDADDR,
175 /**
176 * Description - Bluetooth Service 128-bit UUIDs
177 * Access mode - Only GET.
178 * Data type - Array of bluetooth::Uuid (Array size inferred from property
179 * length).
180 */
181 BT_PROPERTY_UUIDS,
182 /**
183 * Description - Bluetooth Class of Device as found in Assigned Numbers
184 * Access mode - Only GET.
185 * Data type - uint32_t.
186 */
187 BT_PROPERTY_CLASS_OF_DEVICE,
188 /**
189 * Description - Device Type - BREDR, BLE or DUAL Mode
190 * Access mode - Only GET.
191 * Data type - bt_device_type_t
192 */
193 BT_PROPERTY_TYPE_OF_DEVICE,
194 /**
195 * Description - Bluetooth Service Record
196 * Access mode - Only GET.
197 * Data type - bt_service_record_t
198 */
199 BT_PROPERTY_SERVICE_RECORD,
Andre Eisenbach05f49542012-09-18 12:15:26 -0700200
Jakub Pawlowskieab6b6e2017-07-11 09:25:44 -0700201 /* Properties unique to adapter */
202 /**
203 * Description - Bluetooth Adapter scan mode
204 * Access mode - GET and SET
205 * Data type - bt_scan_mode_t.
206 */
207 BT_PROPERTY_ADAPTER_SCAN_MODE,
208 /**
209 * Description - List of bonded devices
210 * Access mode - Only GET.
211 * Data type - Array of RawAddress of the bonded remote devices
212 * (Array size inferred from property length).
213 */
214 BT_PROPERTY_ADAPTER_BONDED_DEVICES,
215 /**
216 * Description - Bluetooth Adapter Discovery timeout (in seconds)
217 * Access mode - GET and SET
218 * Data type - uint32_t
219 */
220 BT_PROPERTY_ADAPTER_DISCOVERY_TIMEOUT,
Andre Eisenbach05f49542012-09-18 12:15:26 -0700221
Jakub Pawlowskieab6b6e2017-07-11 09:25:44 -0700222 /* Properties unique to remote device */
223 /**
224 * Description - User defined friendly name of the remote device
225 * Access mode - GET and SET
226 * Data type - bt_bdname_t.
227 */
228 BT_PROPERTY_REMOTE_FRIENDLY_NAME,
229 /**
230 * Description - RSSI value of the inquired remote device
231 * Access mode - Only GET.
232 * Data type - int32_t.
233 */
234 BT_PROPERTY_REMOTE_RSSI,
235 /**
236 * Description - Remote version info
237 * Access mode - SET/GET.
238 * Data type - bt_remote_version_t.
239 */
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -0800240
Jakub Pawlowskieab6b6e2017-07-11 09:25:44 -0700241 BT_PROPERTY_REMOTE_VERSION_INFO,
Andre Eisenbach05f49542012-09-18 12:15:26 -0700242
Jakub Pawlowskieab6b6e2017-07-11 09:25:44 -0700243 /**
244 * Description - Local LE features
245 * Access mode - GET.
246 * Data type - bt_local_le_features_t.
247 */
248 BT_PROPERTY_LOCAL_LE_FEATURES,
Ganesh Ganapathi Batta460343a2014-05-27 16:03:11 -0700249
Jakub Pawlowskieab6b6e2017-07-11 09:25:44 -0700250 BT_PROPERTY_REMOTE_DEVICE_TIMESTAMP = 0xFF,
Andre Eisenbach05f49542012-09-18 12:15:26 -0700251} bt_property_type_t;
252
253/** Bluetooth Adapter Property data structure */
254typedef struct
255{
256 bt_property_type_t type;
257 int len;
258 void *val;
259} bt_property_t;
260
Jakub Pawlowski00202ff2015-12-01 12:06:23 -0800261/** Bluetooth Out Of Band data for bonding */
262typedef struct
263{
Jakub Pawlowskid82fbad2016-11-09 16:44:30 -0800264 uint8_t le_bt_dev_addr[7]; /* LE Bluetooth Device Address */
Jakub Pawlowski00202ff2015-12-01 12:06:23 -0800265 uint8_t c192[16]; /* Simple Pairing Hash C-192 */
266 uint8_t r192[16]; /* Simple Pairing Randomizer R-192 */
267 uint8_t c256[16]; /* Simple Pairing Hash C-256 */
268 uint8_t r256[16]; /* Simple Pairing Randomizer R-256 */
269 uint8_t sm_tk[16]; /* Security Manager TK Value */
Jakub Pawlowski9caabe12016-07-29 01:37:59 -0700270 uint8_t le_sc_c[16]; /* LE Secure Connections Confirmation Value */
Jakub Pawlowski00202ff2015-12-01 12:06:23 -0800271 uint8_t le_sc_r[16]; /* LE Secure Connections Random Value */
272} bt_out_of_band_data_t;
273
274
Ganesh Ganapathi Batta460343a2014-05-27 16:03:11 -0700275
Andre Eisenbach05f49542012-09-18 12:15:26 -0700276/** Bluetooth Device Type */
277typedef enum {
278 BT_DEVICE_DEVTYPE_BREDR = 0x1,
279 BT_DEVICE_DEVTYPE_BLE,
280 BT_DEVICE_DEVTYPE_DUAL
281} bt_device_type_t;
282/** Bluetooth Bond state */
283typedef enum {
284 BT_BOND_STATE_NONE,
285 BT_BOND_STATE_BONDING,
286 BT_BOND_STATE_BONDED
287} bt_bond_state_t;
288
289/** Bluetooth SSP Bonding Variant */
290typedef enum {
291 BT_SSP_VARIANT_PASSKEY_CONFIRMATION,
292 BT_SSP_VARIANT_PASSKEY_ENTRY,
293 BT_SSP_VARIANT_CONSENT,
294 BT_SSP_VARIANT_PASSKEY_NOTIFICATION
295} bt_ssp_variant_t;
296
297#define BT_MAX_NUM_UUIDS 32
298
299/** Bluetooth Interface callbacks */
300
301/** Bluetooth Enable/Disable Callback. */
302typedef void (*adapter_state_changed_callback)(bt_state_t state);
303
304/** GET/SET Adapter Properties callback */
305/* TODO: For the GET/SET property APIs/callbacks, we may need a session
306 * identifier to associate the call with the callback. This would be needed
307 * whenever more than one simultaneous instance of the same adapter_type
308 * is get/set.
309 *
310 * If this is going to be handled in the Java framework, then we do not need
311 * to manage sessions here.
312 */
313typedef void (*adapter_properties_callback)(bt_status_t status,
314 int num_properties,
315 bt_property_t *properties);
316
317/** GET/SET Remote Device Properties callback */
318/** TODO: For remote device properties, do not see a need to get/set
319 * multiple properties - num_properties shall be 1
320 */
321typedef void (*remote_device_properties_callback)(bt_status_t status,
Jakub Pawlowski5a852002017-06-24 17:33:20 -0700322 RawAddress *bd_addr,
Andre Eisenbach05f49542012-09-18 12:15:26 -0700323 int num_properties,
324 bt_property_t *properties);
325
326/** New device discovered callback */
327/** If EIR data is not present, then BD_NAME and RSSI shall be NULL and -1
328 * respectively */
329typedef void (*device_found_callback)(int num_properties,
330 bt_property_t *properties);
331
332/** Discovery state changed callback */
333typedef void (*discovery_state_changed_callback)(bt_discovery_state_t state);
334
335/** Bluetooth Legacy PinKey Request callback */
Jakub Pawlowski5a852002017-06-24 17:33:20 -0700336typedef void (*pin_request_callback)(RawAddress *remote_bd_addr,
Casper Bonde5ccdc512015-05-08 14:33:58 +0200337 bt_bdname_t *bd_name, uint32_t cod, bool min_16_digit);
Andre Eisenbach05f49542012-09-18 12:15:26 -0700338
339/** Bluetooth SSP Request callback - Just Works & Numeric Comparison*/
340/** pass_key - Shall be 0 for BT_SSP_PAIRING_VARIANT_CONSENT &
341 * BT_SSP_PAIRING_PASSKEY_ENTRY */
342/* TODO: Passkey request callback shall not be needed for devices with display
343 * capability. We still need support this in the stack for completeness */
Jakub Pawlowski5a852002017-06-24 17:33:20 -0700344typedef void (*ssp_request_callback)(RawAddress *remote_bd_addr,
Andre Eisenbach05f49542012-09-18 12:15:26 -0700345 bt_bdname_t *bd_name,
346 uint32_t cod,
347 bt_ssp_variant_t pairing_variant,
348 uint32_t pass_key);
349
350/** Bluetooth Bond state changed callback */
351/* Invoked in response to create_bond, cancel_bond or remove_bond */
352typedef void (*bond_state_changed_callback)(bt_status_t status,
Jakub Pawlowski5a852002017-06-24 17:33:20 -0700353 RawAddress *remote_bd_addr,
Andre Eisenbach05f49542012-09-18 12:15:26 -0700354 bt_bond_state_t state);
355
356/** Bluetooth ACL connection state changed callback */
Jakub Pawlowski5a852002017-06-24 17:33:20 -0700357typedef void (*acl_state_changed_callback)(bt_status_t status, RawAddress *remote_bd_addr,
Andre Eisenbach05f49542012-09-18 12:15:26 -0700358 bt_acl_state_t state);
359
360typedef enum {
361 ASSOCIATE_JVM,
362 DISASSOCIATE_JVM
363} bt_cb_thread_evt;
364
365/** Thread Associate/Disassociate JVM Callback */
366/* Callback that is invoked by the callback thread to allow upper layer to attach/detach to/from
367 * the JVM */
368typedef void (*callback_thread_event)(bt_cb_thread_evt evt);
369
370/** Bluetooth Test Mode Callback */
371/* Receive any HCI event from controller. Must be in DUT Mode for this callback to be received */
372typedef void (*dut_mode_recv_callback)(uint16_t opcode, uint8_t *buf, uint8_t len);
373
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -0800374/* LE Test mode callbacks
375* This callback shall be invoked whenever the le_tx_test, le_rx_test or le_test_end is invoked
376* The num_packets is valid only for le_test_end command */
377typedef void (*le_test_mode_callback)(bt_status_t status, uint16_t num_packets);
Satya Callojibe7f0442014-07-03 10:59:16 -0700378
379/** Callback invoked when energy details are obtained */
380/* Ctrl_state-Current controller state-Active-1,scan-2,or idle-3 state as defined by HCI spec.
381 * If the ctrl_state value is 0, it means the API call failed
382 * Time values-In milliseconds as returned by the controller
383 * Energy used-Value as returned by the controller
Adam Lesinskie2d316d2015-12-03 11:40:47 -0800384 * Status-Provides the status of the read_energy_info API call
385 * uid_data provides an array of bt_uid_traffic_t, where the array is terminated by an element with
386 * app_uid set to -1.
387 */
388typedef void (*energy_info_callback)(bt_activity_energy_info *energy_info,
389 bt_uid_traffic_t *uid_data);
Satya Callojibe7f0442014-07-03 10:59:16 -0700390
Andre Eisenbach05f49542012-09-18 12:15:26 -0700391/** TODO: Add callbacks for Link Up/Down and other generic
392 * notifications/callbacks */
393
394/** Bluetooth DM callback structure. */
395typedef struct {
396 /** set to sizeof(bt_callbacks_t) */
397 size_t size;
398 adapter_state_changed_callback adapter_state_changed_cb;
399 adapter_properties_callback adapter_properties_cb;
400 remote_device_properties_callback remote_device_properties_cb;
401 device_found_callback device_found_cb;
402 discovery_state_changed_callback discovery_state_changed_cb;
403 pin_request_callback pin_request_cb;
404 ssp_request_callback ssp_request_cb;
405 bond_state_changed_callback bond_state_changed_cb;
406 acl_state_changed_callback acl_state_changed_cb;
407 callback_thread_event thread_evt_cb;
408 dut_mode_recv_callback dut_mode_recv_cb;
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -0800409 le_test_mode_callback le_test_mode_cb;
Satya Callojibe7f0442014-07-03 10:59:16 -0700410 energy_info_callback energy_info_cb;
Andre Eisenbach05f49542012-09-18 12:15:26 -0700411} bt_callbacks_t;
412
Sharvil Nanavati3bd8cba2014-05-30 16:43:38 -0700413typedef void (*alarm_cb)(void *data);
414typedef bool (*set_wake_alarm_callout)(uint64_t delay_millis, bool should_wake, alarm_cb cb, void *data);
415typedef int (*acquire_wake_lock_callout)(const char *lock_name);
416typedef int (*release_wake_lock_callout)(const char *lock_name);
417
418/** The set of functions required by bluedroid to set wake alarms and
419 * grab wake locks. This struct is passed into the stack through the
420 * |set_os_callouts| function on |bt_interface_t|.
421 */
422typedef struct {
423 /* set to sizeof(bt_os_callouts_t) */
424 size_t size;
425
426 set_wake_alarm_callout set_wake_alarm;
427 acquire_wake_lock_callout acquire_wake_lock;
428 release_wake_lock_callout release_wake_lock;
429} bt_os_callouts_t;
430
Andre Eisenbach05f49542012-09-18 12:15:26 -0700431/** NOTE: By default, no profiles are initialized at the time of init/enable.
432 * Whenever the application invokes the 'init' API of a profile, then one of
433 * the following shall occur:
434 *
435 * 1.) If Bluetooth is not enabled, then the Bluetooth core shall mark the
436 * profile as enabled. Subsequently, when the application invokes the
437 * Bluetooth 'enable', as part of the enable sequence the profile that were
438 * marked shall be enabled by calling appropriate stack APIs. The
439 * 'adapter_properties_cb' shall return the list of UUIDs of the
440 * enabled profiles.
441 *
442 * 2.) If Bluetooth is enabled, then the Bluetooth core shall invoke the stack
443 * profile API to initialize the profile and trigger a
444 * 'adapter_properties_cb' with the current list of UUIDs including the
445 * newly added profile's UUID.
446 *
447 * The reverse shall occur whenever the profile 'cleanup' APIs are invoked
448 */
449
450/** Represents the standard Bluetooth DM interface. */
451typedef struct {
452 /** set to sizeof(bt_interface_t) */
453 size_t size;
454 /**
455 * Opens the interface and provides the callback routines
456 * to the implemenation of this interface.
457 */
458 int (*init)(bt_callbacks_t* callbacks );
459
460 /** Enable Bluetooth. */
Ajay Panickerd51c01d2016-03-18 14:27:36 -0700461 int (*enable)(bool guest_mode);
Andre Eisenbach05f49542012-09-18 12:15:26 -0700462
463 /** Disable Bluetooth. */
464 int (*disable)(void);
465
466 /** Closes the interface. */
467 void (*cleanup)(void);
468
469 /** Get all Bluetooth Adapter properties at init */
470 int (*get_adapter_properties)(void);
471
472 /** Get Bluetooth Adapter property of 'type' */
473 int (*get_adapter_property)(bt_property_type_t type);
474
475 /** Set Bluetooth Adapter property of 'type' */
476 /* Based on the type, val shall be one of
Jakub Pawlowski5a852002017-06-24 17:33:20 -0700477 * RawAddress or bt_bdname_t or bt_scanmode_t etc
Andre Eisenbach05f49542012-09-18 12:15:26 -0700478 */
479 int (*set_adapter_property)(const bt_property_t *property);
480
481 /** Get all Remote Device properties */
Jakub Pawlowski5a852002017-06-24 17:33:20 -0700482 int (*get_remote_device_properties)(RawAddress *remote_addr);
Andre Eisenbach05f49542012-09-18 12:15:26 -0700483
484 /** Get Remote Device property of 'type' */
Jakub Pawlowski5a852002017-06-24 17:33:20 -0700485 int (*get_remote_device_property)(RawAddress *remote_addr,
Andre Eisenbach05f49542012-09-18 12:15:26 -0700486 bt_property_type_t type);
487
488 /** Set Remote Device property of 'type' */
Jakub Pawlowski5a852002017-06-24 17:33:20 -0700489 int (*set_remote_device_property)(RawAddress *remote_addr,
Andre Eisenbach05f49542012-09-18 12:15:26 -0700490 const bt_property_t *property);
491
492 /** Get Remote Device's service record for the given UUID */
Jakub Pawlowskieab6b6e2017-07-11 09:25:44 -0700493 int (*get_remote_service_record)(const RawAddress& remote_addr,
494 const bluetooth::Uuid& uuid);
Andre Eisenbach05f49542012-09-18 12:15:26 -0700495
496 /** Start SDP to get remote services */
Jakub Pawlowski5a852002017-06-24 17:33:20 -0700497 int (*get_remote_services)(RawAddress *remote_addr);
Andre Eisenbach05f49542012-09-18 12:15:26 -0700498
499 /** Start Discovery */
500 int (*start_discovery)(void);
501
502 /** Cancel Discovery */
503 int (*cancel_discovery)(void);
504
505 /** Create Bluetooth Bonding */
Jakub Pawlowski5a852002017-06-24 17:33:20 -0700506 int (*create_bond)(const RawAddress *bd_addr, int transport);
Andre Eisenbach05f49542012-09-18 12:15:26 -0700507
Jakub Pawlowski00202ff2015-12-01 12:06:23 -0800508 /** Create Bluetooth Bond using out of band data */
Jakub Pawlowski5a852002017-06-24 17:33:20 -0700509 int (*create_bond_out_of_band)(const RawAddress *bd_addr, int transport,
Jakub Pawlowski00202ff2015-12-01 12:06:23 -0800510 const bt_out_of_band_data_t *oob_data);
511
Andre Eisenbach05f49542012-09-18 12:15:26 -0700512 /** Remove Bond */
Jakub Pawlowski5a852002017-06-24 17:33:20 -0700513 int (*remove_bond)(const RawAddress *bd_addr);
Andre Eisenbach05f49542012-09-18 12:15:26 -0700514
515 /** Cancel Bond */
Jakub Pawlowski5a852002017-06-24 17:33:20 -0700516 int (*cancel_bond)(const RawAddress *bd_addr);
Andre Eisenbach05f49542012-09-18 12:15:26 -0700517
Andre Eisenbach0d553bc2014-06-18 12:18:34 -0700518 /**
519 * Get the connection status for a given remote device.
520 * return value of 0 means the device is not connected,
521 * non-zero return status indicates an active connection.
522 */
Jakub Pawlowski5a852002017-06-24 17:33:20 -0700523 int (*get_connection_state)(const RawAddress *bd_addr);
Andre Eisenbach0d553bc2014-06-18 12:18:34 -0700524
Andre Eisenbach05f49542012-09-18 12:15:26 -0700525 /** BT Legacy PinKey Reply */
526 /** If accept==FALSE, then pin_len and pin_code shall be 0x0 */
Jakub Pawlowski5a852002017-06-24 17:33:20 -0700527 int (*pin_reply)(const RawAddress *bd_addr, uint8_t accept,
Andre Eisenbach05f49542012-09-18 12:15:26 -0700528 uint8_t pin_len, bt_pin_code_t *pin_code);
529
530 /** BT SSP Reply - Just Works, Numeric Comparison and Passkey
531 * passkey shall be zero for BT_SSP_VARIANT_PASSKEY_COMPARISON &
532 * BT_SSP_VARIANT_CONSENT
533 * For BT_SSP_VARIANT_PASSKEY_ENTRY, if accept==FALSE, then passkey
534 * shall be zero */
Jakub Pawlowski5a852002017-06-24 17:33:20 -0700535 int (*ssp_reply)(const RawAddress *bd_addr, bt_ssp_variant_t variant,
Andre Eisenbach05f49542012-09-18 12:15:26 -0700536 uint8_t accept, uint32_t passkey);
537
538 /** Get Bluetooth profile interface */
539 const void* (*get_profile_interface) (const char *profile_id);
540
541 /** Bluetooth Test Mode APIs - Bluetooth must be enabled for these APIs */
542 /* Configure DUT Mode - Use this mode to enter/exit DUT mode */
543 int (*dut_mode_configure)(uint8_t enable);
544
545 /* Send any test HCI (vendor-specific) command to the controller. Must be in DUT Mode */
546 int (*dut_mode_send)(uint16_t opcode, uint8_t *buf, uint8_t len);
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -0800547 /** BLE Test Mode APIs */
548 /* opcode MUST be one of: LE_Receiver_Test, LE_Transmitter_Test, LE_Test_End */
549 int (*le_test_mode)(uint16_t opcode, uint8_t *buf, uint8_t len);
550
Sharvil Nanavati3bd8cba2014-05-30 16:43:38 -0700551 /** Sets the OS call-out functions that bluedroid needs for alarms and wake locks.
552 * This should be called immediately after a successful |init|.
553 */
554 int (*set_os_callouts)(bt_os_callouts_t *callouts);
Satya Callojibe7f0442014-07-03 10:59:16 -0700555
556 /** Read Energy info details - return value indicates BT_STATUS_SUCCESS or BT_STATUS_NOT_READY
557 * Success indicates that the VSC command was sent to controller
558 */
559 int (*read_energy_info)();
Andre Eisenbach34ab95a2014-12-05 09:35:57 -0800560
561 /**
562 * Native support for dumpsys function
563 * Function is synchronous and |fd| is owned by caller.
Marie Janssen32d45dd2016-01-08 11:16:29 -0800564 * |arguments| are arguments which may affect the output, encoded as
565 * UTF-8 strings.
Andre Eisenbach34ab95a2014-12-05 09:35:57 -0800566 */
Marie Janssen32d45dd2016-01-08 11:16:29 -0800567 void (*dump)(int fd, const char **arguments);
Ajay Panickerb3759712015-07-28 16:53:53 -0700568
569 /**
570 * Clear /data/misc/bt_config.conf and erase all stored connections
571 */
572 int (*config_clear)(void);
573
Andre Eisenbache4109402016-01-14 02:03:36 -0800574 /**
575 * Clear (reset) the dynamic portion of the device interoperability database.
576 */
577 void (*interop_database_clear)(void);
578
579 /**
580 * Add a new device interoperability workaround for a remote device whose
581 * first |len| bytes of the its device address match |addr|.
582 * NOTE: |feature| has to match an item defined in interop_feature_t (interop.h).
583 */
Jakub Pawlowski5a852002017-06-24 17:33:20 -0700584 void (*interop_database_add)(uint16_t feature, const RawAddress *addr, size_t len);
Andre Eisenbach05f49542012-09-18 12:15:26 -0700585} bt_interface_t;
586
Andre Eisenbach05f49542012-09-18 12:15:26 -0700587__END_DECLS
588
589#endif /* ANDROID_INCLUDE_BLUETOOTH_H */