Home | History | Annotate | Download | only in include
      1 /******************************************************************************
      2  *
      3  *  Copyright (C) 2003-2014 Broadcom Corporation
      4  *
      5  *  Licensed under the Apache License, Version 2.0 (the "License");
      6  *  you may not use this file except in compliance with the License.
      7  *  You may obtain a copy of the License at:
      8  *
      9  *  http://www.apache.org/licenses/LICENSE-2.0
     10  *
     11  *  Unless required by applicable law or agreed to in writing, software
     12  *  distributed under the License is distributed on an "AS IS" BASIS,
     13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     14  *  See the License for the specific language governing permissions and
     15  *  limitations under the License.
     16  *
     17  ******************************************************************************/
     18 
     19 /******************************************************************************
     20  *
     21  *  This is the public interface file for BTA, Broadcom's Bluetooth
     22  *  application layer for mobile phones.
     23  *
     24  ******************************************************************************/
     25 #ifndef BTA_API_H
     26 #define BTA_API_H
     27 
     28 #include "bt_target.h"
     29 #include "bt_types.h"
     30 #include "btm_api.h"
     31 
     32 #if BLE_INCLUDED == TRUE
     33 #include "btm_ble_api.h"
     34 #endif
     35 
     36 /*****************************************************************************
     37 **  Constants and data types
     38 *****************************************************************************/
     39 
     40 /* Status Return Value */
     41 #define BTA_SUCCESS             0           /* Successful operation. */
     42 #define BTA_FAILURE             1           /* Generic failure. */
     43 #define BTA_PENDING             2           /* API cannot be completed right now */
     44 #define BTA_BUSY                3
     45 #define BTA_NO_RESOURCES        4
     46 #define BTA_WRONG_MODE          5
     47 
     48 typedef UINT8 tBTA_STATUS;
     49 
     50 /*
     51  * Service ID
     52  *
     53  * NOTES: When you add a new Service ID for BTA AND require to change the value of BTA_MAX_SERVICE_ID,
     54  *        make sure that the correct security ID of the new service from Security service definitions (btm_api.h)
     55  *        should be added to bta_service_id_to_btm_srv_id_lkup_tbl table in bta_dm_act.c.
     56  */
     57 
     58 #define BTA_RES_SERVICE_ID      0           /* Reserved */
     59 #define BTA_SPP_SERVICE_ID      1           /* Serial port profile. */
     60 #define BTA_DUN_SERVICE_ID      2           /* Dial-up networking profile. */
     61 #define BTA_A2DP_SOURCE_SERVICE_ID      3   /* A2DP Source profile. */
     62 #define BTA_LAP_SERVICE_ID      4           /* LAN access profile. */
     63 #define BTA_HSP_SERVICE_ID      5           /* Headset profile. */
     64 #define BTA_HFP_SERVICE_ID      6           /* Hands-free profile. */
     65 #define BTA_OPP_SERVICE_ID      7           /* Object push  */
     66 #define BTA_FTP_SERVICE_ID      8           /* File transfer */
     67 #define BTA_CTP_SERVICE_ID      9           /* Cordless Terminal */
     68 #define BTA_ICP_SERVICE_ID      10          /* Intercom Terminal */
     69 #define BTA_SYNC_SERVICE_ID     11          /* Synchronization */
     70 #define BTA_BPP_SERVICE_ID      12          /* Basic printing profile */
     71 #define BTA_BIP_SERVICE_ID      13          /* Basic Imaging profile */
     72 #define BTA_PANU_SERVICE_ID     14          /* PAN User */
     73 #define BTA_NAP_SERVICE_ID      15          /* PAN Network access point */
     74 #define BTA_GN_SERVICE_ID       16          /* PAN Group Ad-hoc networks */
     75 #define BTA_SAP_SERVICE_ID      17          /* SIM Access profile */
     76 #define BTA_A2DP_SINK_SERVICE_ID        18  /* A2DP Sink */
     77 #define BTA_AVRCP_SERVICE_ID    19          /* A/V remote control */
     78 #define BTA_HID_SERVICE_ID      20          /* HID */
     79 #define BTA_VDP_SERVICE_ID      21          /* Video distribution */
     80 #define BTA_PBAP_SERVICE_ID     22          /* PhoneBook Access Server*/
     81 #define BTA_HSP_HS_SERVICE_ID   23          /* HFP HS role */
     82 #define BTA_HFP_HS_SERVICE_ID   24          /* HSP HS role */
     83 #define BTA_MAP_SERVICE_ID      25          /* Message Access Profile */
     84 #define BTA_MN_SERVICE_ID       26          /* Message Notification Service */
     85 #define BTA_HDP_SERVICE_ID      27          /* Health Device Profile */
     86 #define BTA_PCE_SERVICE_ID      28          /* PhoneBook Access Client*/
     87 #define BTA_SDP_SERVICE_ID      29          /* SDP Search*/
     88 #if BLE_INCLUDED == TRUE && BTA_GATT_INCLUDED == TRUE
     89 /* BLE profile service ID */
     90 #define BTA_BLE_SERVICE_ID      30          /* GATT profile */
     91 
     92 #define BTA_USER_SERVICE_ID     31          /* User requested UUID */
     93 
     94 #define BTA_MAX_SERVICE_ID      32
     95 #else
     96 #define BTA_USER_SERVICE_ID     30          /* User requested UUID */
     97 #define BTA_MAX_SERVICE_ID      31
     98 #endif
     99 /* service IDs (BTM_SEC_SERVICE_FIRST_EMPTY + 1) to (BTM_SEC_MAX_SERVICES - 1)
    100  * are used by BTA JV */
    101 #define BTA_FIRST_JV_SERVICE_ID     (BTM_SEC_SERVICE_FIRST_EMPTY + 1)
    102 #define BTA_LAST_JV_SERVICE_ID      (BTM_SEC_MAX_SERVICES - 1)
    103 
    104 typedef UINT8 tBTA_SERVICE_ID;
    105 
    106 /* Service ID Mask */
    107 #define BTA_RES_SERVICE_MASK        0x00000001  /* Reserved */
    108 #define BTA_SPP_SERVICE_MASK        0x00000002  /* Serial port profile. */
    109 #define BTA_DUN_SERVICE_MASK        0x00000004  /* Dial-up networking profile. */
    110 #define BTA_FAX_SERVICE_MASK        0x00000008  /* Fax profile. */
    111 #define BTA_LAP_SERVICE_MASK        0x00000010  /* LAN access profile. */
    112 #define BTA_HSP_SERVICE_MASK        0x00000020  /* HSP AG role. */
    113 #define BTA_HFP_SERVICE_MASK        0x00000040  /* HFP AG role */
    114 #define BTA_OPP_SERVICE_MASK        0x00000080  /* Object push  */
    115 #define BTA_FTP_SERVICE_MASK        0x00000100  /* File transfer */
    116 #define BTA_CTP_SERVICE_MASK        0x00000200  /* Cordless Terminal */
    117 #define BTA_ICP_SERVICE_MASK        0x00000400  /* Intercom Terminal */
    118 #define BTA_SYNC_SERVICE_MASK       0x00000800  /* Synchronization */
    119 #define BTA_BPP_SERVICE_MASK        0x00001000  /* Print server */
    120 #define BTA_BIP_SERVICE_MASK        0x00002000  /* Basic Imaging */
    121 #define BTA_PANU_SERVICE_MASK       0x00004000  /* PAN User */
    122 #define BTA_NAP_SERVICE_MASK        0x00008000  /* PAN Network access point */
    123 #define BTA_GN_SERVICE_MASK         0x00010000  /* PAN Group Ad-hoc networks */
    124 #define BTA_SAP_SERVICE_MASK        0x00020000  /* PAN Group Ad-hoc networks */
    125 #define BTA_A2DP_SERVICE_MASK       0x00040000  /* Advanced audio distribution */
    126 #define BTA_AVRCP_SERVICE_MASK      0x00080000  /* A/V remote control */
    127 #define BTA_HID_SERVICE_MASK        0x00100000  /* HID */
    128 #define BTA_VDP_SERVICE_MASK        0x00200000  /* Video distribution */
    129 #define BTA_PBAP_SERVICE_MASK       0x00400000  /* Phone Book Server */
    130 #define BTA_HSP_HS_SERVICE_MASK     0x00800000  /* HFP HS role */
    131 #define BTA_HFP_HS_SERVICE_MASK     0x01000000  /* HSP HS role */
    132 #define BTA_MAS_SERVICE_MASK        0x02000000  /* Message Access Profile */
    133 #define BTA_MN_SERVICE_MASK         0x04000000  /* Message Notification Profile */
    134 #define BTA_HL_SERVICE_MASK         0x08000000  /* Health Device Profile */
    135 #define BTA_PCE_SERVICE_MASK        0x10000000  /* Phone Book Client */
    136 
    137 #if BLE_INCLUDED == TRUE && BTA_GATT_INCLUDED == TRUE
    138 #define BTA_BLE_SERVICE_MASK        0x20000000  /* GATT based service */
    139 #define BTA_USER_SERVICE_MASK       0x40000000  /* Message Notification Profile */
    140 #else
    141 #define BTA_USER_SERVICE_MASK       0x20000000  /* Message Notification Profile */
    142 #endif
    143 
    144 #if BLE_INCLUDED == TRUE && BTA_GATT_INCLUDED == TRUE
    145 #define BTA_ALL_SERVICE_MASK        0x3FFFFFFF  /* All services supported by BTA. */
    146 #else
    147 #define BTA_ALL_SERVICE_MASK        0x1FFFFFFF  /* All services supported by BTA. */
    148 #endif
    149 
    150 typedef UINT32 tBTA_SERVICE_MASK;
    151 
    152 /* extended service mask, including mask with one or more GATT UUID */
    153 typedef struct
    154 {
    155     tBTA_SERVICE_MASK   srvc_mask;
    156     UINT8               num_uuid;
    157     tBT_UUID            *p_uuid;
    158 }tBTA_SERVICE_MASK_EXT;
    159 
    160 /* Security Setting Mask */
    161 #define BTA_SEC_NONE            BTM_SEC_NONE                                         /* No security. */
    162 #define BTA_SEC_AUTHORIZE       (BTM_SEC_IN_AUTHORIZE )                              /* Authorization required (only needed for out going connection )*/
    163 #define BTA_SEC_AUTHENTICATE    (BTM_SEC_IN_AUTHENTICATE | BTM_SEC_OUT_AUTHENTICATE) /* Authentication required. */
    164 #define BTA_SEC_ENCRYPT         (BTM_SEC_IN_ENCRYPT | BTM_SEC_OUT_ENCRYPT)           /* Encryption required. */
    165 #define BTA_SEC_MODE4_LEVEL4    (BTM_SEC_MODE4_LEVEL4)                               /* Mode 4 level 4 service, i.e. incoming/outgoing MITM and P-256 encryption */
    166 #define BTA_SEC_MITM            (BTM_SEC_IN_MITM | BTM_SEC_OUT_MITM)                 /* Man-In-The_Middle protection */
    167 #define BTA_SEC_IN_16_DIGITS    (BTM_SEC_IN_MIN_16_DIGIT_PIN)                        /* Min 16 digit for pin code */
    168 
    169 typedef UINT16 tBTA_SEC;
    170 
    171 /* Ignore for Discoverable, Connectable, Pairable and Connectable Paired only device modes */
    172 #define BTA_DM_IGNORE           0x00FF
    173 
    174 /* Ignore for Discoverable, Connectable only for LE modes */
    175 #define BTA_DM_LE_IGNORE           0xFF00
    176 
    177 #define BTA_APP_ID_PAN_MULTI    0xFE    /* app id for pan multiple connection */
    178 #define BTA_ALL_APP_ID          0xFF
    179 
    180 /* Discoverable Modes */
    181 #define BTA_DM_NON_DISC         BTM_NON_DISCOVERABLE        /* Device is not discoverable. */
    182 #define BTA_DM_GENERAL_DISC     BTM_GENERAL_DISCOVERABLE    /* General discoverable. */
    183 #define BTA_DM_LIMITED_DISC     BTM_LIMITED_DISCOVERABLE    /* Limited discoverable. */
    184 #if ((defined BLE_INCLUDED) && (BLE_INCLUDED == TRUE))
    185 #define BTA_DM_BLE_NON_DISCOVERABLE        BTM_BLE_NON_DISCOVERABLE        /* Device is not LE discoverable */
    186 #define BTA_DM_BLE_GENERAL_DISCOVERABLE    BTM_BLE_GENERAL_DISCOVERABLE    /* Device is LE General discoverable */
    187 #define BTA_DM_BLE_LIMITED_DISCOVERABLE    BTM_BLE_LIMITED_DISCOVERABLE    /* Device is LE Limited discoverable */
    188 #endif
    189 typedef UINT16 tBTA_DM_DISC;        /* this discoverability mode is a bit mask among BR mode and LE mode */
    190 
    191 /* Connectable Modes */
    192 #define BTA_DM_NON_CONN         BTM_NON_CONNECTABLE         /* Device is not connectable. */
    193 #define BTA_DM_CONN             BTM_CONNECTABLE             /* Device is connectable. */
    194 #if ((defined BLE_INCLUDED) && (BLE_INCLUDED == TRUE))
    195 #define BTA_DM_BLE_NON_CONNECTABLE      BTM_BLE_NON_CONNECTABLE     /* Device is LE non-connectable. */
    196 #define BTA_DM_BLE_CONNECTABLE          BTM_BLE_CONNECTABLE         /* Device is LE connectable. */
    197 #endif
    198 
    199 typedef UINT16 tBTA_DM_CONN;
    200 
    201 #define BTA_TRANSPORT_UNKNOWN   0
    202 #define BTA_TRANSPORT_BR_EDR    BT_TRANSPORT_BR_EDR
    203 #define BTA_TRANSPORT_LE        BT_TRANSPORT_LE
    204 typedef tBT_TRANSPORT tBTA_TRANSPORT;
    205 
    206 /* Pairable Modes */
    207 #define BTA_DM_PAIRABLE         1
    208 #define BTA_DM_NON_PAIRABLE     0
    209 
    210 /* Connectable Paired Only Mode */
    211 #define BTA_DM_CONN_ALL         0
    212 #define BTA_DM_CONN_PAIRED      1
    213 
    214 /* Inquiry Modes */
    215 #define BTA_DM_INQUIRY_NONE     BTM_INQUIRY_NONE            /*No BR inquiry. */
    216 #define BTA_DM_GENERAL_INQUIRY  BTM_GENERAL_INQUIRY         /* Perform general inquiry. */
    217 #define BTA_DM_LIMITED_INQUIRY  BTM_LIMITED_INQUIRY         /* Perform limited inquiry. */
    218 
    219 #if ((defined BLE_INCLUDED) && (BLE_INCLUDED == TRUE))
    220 #define BTA_BLE_INQUIRY_NONE    BTM_BLE_INQUIRY_NONE
    221 #define BTA_BLE_GENERAL_INQUIRY BTM_BLE_GENERAL_INQUIRY      /* Perform LE general inquiry. */
    222 #define BTA_BLE_LIMITED_INQUIRY BTM_BLE_LIMITED_INQUIRY      /* Perform LE limited inquiry. */
    223 #endif
    224 typedef UINT8 tBTA_DM_INQ_MODE;
    225 
    226 /* Inquiry Filter Type */
    227 #define BTA_DM_INQ_CLR          BTM_CLR_INQUIRY_FILTER          /* Clear inquiry filter. */
    228 #define BTA_DM_INQ_DEV_CLASS    BTM_FILTER_COND_DEVICE_CLASS    /* Filter on device class. */
    229 #define BTA_DM_INQ_BD_ADDR      BTM_FILTER_COND_BD_ADDR         /* Filter on a specific  BD address. */
    230 
    231 typedef UINT8 tBTA_DM_INQ_FILT;
    232 
    233 /* Authorize Response */
    234 #define BTA_DM_AUTH_PERM        0      /* Authorized for future connections to the service */
    235 #define BTA_DM_AUTH_TEMP        1      /* Authorized for current connection only */
    236 #define BTA_DM_NOT_AUTH         2      /* Not authorized for the service */
    237 
    238 typedef UINT8 tBTA_AUTH_RESP;
    239 
    240 /* M/S preferred roles */
    241 #define BTA_ANY_ROLE          0x00
    242 #define BTA_MASTER_ROLE_PREF  0x01
    243 #define BTA_MASTER_ROLE_ONLY  0x02
    244 #define BTA_SLAVE_ROLE_ONLY   0x03     /* Used for PANU only, skip role switch to master */
    245 
    246 typedef UINT8 tBTA_PREF_ROLES;
    247 
    248 enum
    249 {
    250 
    251     BTA_DM_NO_SCATTERNET,        /* Device doesn't support scatternet, it might
    252                                     support "role switch during connection" for
    253                                     an incoming connection, when it already has
    254                                     another connection in master role */
    255     BTA_DM_PARTIAL_SCATTERNET,   /* Device supports partial scatternet. It can have
    256                                     simulateous connection in Master and Slave roles
    257                                     for short period of time */
    258     BTA_DM_FULL_SCATTERNET       /* Device can have simultaneous connection in master
    259                                     and slave roles */
    260 
    261 };
    262 
    263 
    264 /* Inquiry filter device class condition */
    265 typedef struct
    266 {
    267     DEV_CLASS       dev_class;        /* device class of interest */
    268     DEV_CLASS       dev_class_mask;   /* mask to determine the bits of device class of interest */
    269 } tBTA_DM_COD_COND;
    270 
    271 
    272 /* Inquiry Filter Condition */
    273 typedef union
    274 {
    275     BD_ADDR              bd_addr;            /* BD address of  device to filter. */
    276     tBTA_DM_COD_COND     dev_class_cond;     /* Device class filter condition */
    277 } tBTA_DM_INQ_COND;
    278 
    279 /* Inquiry Parameters */
    280 typedef struct
    281 {
    282     tBTA_DM_INQ_MODE    mode;           /* Inquiry mode, limited or general. */
    283     UINT8               duration;       /* Inquiry duration in 1.28 sec units. */
    284     UINT8               max_resps;      /* Maximum inquiry responses.  Set to zero for unlimited responses. */
    285     BOOLEAN             report_dup;     /* report duplicated inquiry response with higher RSSI value */
    286     tBTA_DM_INQ_FILT    filter_type;    /* Filter condition type. */
    287     tBTA_DM_INQ_COND    filter_cond;    /* Filter condition data. */
    288 #if (defined(BTA_HOST_INTERLEAVE_SEARCH) && BTA_HOST_INTERLEAVE_SEARCH == TRUE)
    289     UINT8               intl_duration[4];/*duration array storing the interleave scan's time portions*/
    290 #endif
    291 } tBTA_DM_INQ;
    292 
    293 typedef struct
    294 {
    295     UINT8   bta_dm_eir_min_name_len;        /* minimum length of local name when it is shortened */
    296 #if (BTA_EIR_CANNED_UUID_LIST == TRUE)
    297     UINT8   bta_dm_eir_uuid16_len;          /* length of 16-bit UUIDs */
    298     UINT8  *bta_dm_eir_uuid16;              /* 16-bit UUIDs */
    299 #else
    300     UINT32  uuid_mask[BTM_EIR_SERVICE_ARRAY_SIZE]; /* mask of UUID list in EIR */
    301 #endif
    302     INT8   *bta_dm_eir_inq_tx_power;        /* Inquiry TX power         */
    303     UINT8   bta_dm_eir_flag_len;            /* length of flags in bytes */
    304     UINT8  *bta_dm_eir_flags;               /* flags for EIR */
    305     UINT8   bta_dm_eir_manufac_spec_len;    /* length of manufacturer specific in bytes */
    306     UINT8  *bta_dm_eir_manufac_spec;        /* manufacturer specific */
    307     UINT8   bta_dm_eir_additional_len;      /* length of additional data in bytes */
    308     UINT8  *bta_dm_eir_additional;          /* additional data */
    309 } tBTA_DM_EIR_CONF;
    310 
    311 #if BLE_INCLUDED == TRUE
    312 /* ADV data flag bit definition used for BTM_BLE_AD_TYPE_FLAG */
    313 #define BTA_BLE_LIMIT_DISC_FLAG     BTM_BLE_LIMIT_DISC_FLAG
    314 #define BTA_BLE_GEN_DISC_FLAG       BTM_BLE_GEN_DISC_FLAG
    315 #define BTA_BLE_BREDR_NOT_SPT       BTM_BLE_BREDR_NOT_SPT
    316 #define BTA_BLE_DMT_CONTROLLER_SPT  BTM_BLE_DMT_CONTROLLER_SPT
    317 #define BTA_BLE_DMT_HOST_SPT        BTM_BLE_DMT_HOST_SPT
    318 #define BTA_BLE_NON_LIMIT_DISC_FLAG BTM_BLE_NON_LIMIT_DISC_FLAG
    319 #define BTA_BLE_ADV_FLAG_MASK       BTM_BLE_ADV_FLAG_MASK
    320 #define BTA_BLE_LIMIT_DISC_MASK     BTM_BLE_LIMIT_DISC_MASK
    321 
    322 /* ADV data bit mask */
    323 #define BTA_BLE_AD_BIT_DEV_NAME        BTM_BLE_AD_BIT_DEV_NAME
    324 #define BTA_BLE_AD_BIT_FLAGS           BTM_BLE_AD_BIT_FLAGS
    325 #define BTA_BLE_AD_BIT_MANU            BTM_BLE_AD_BIT_MANU
    326 #define BTA_BLE_AD_BIT_TX_PWR          BTM_BLE_AD_BIT_TX_PWR
    327 #define BTA_BLE_AD_BIT_INT_RANGE       BTM_BLE_AD_BIT_INT_RANGE
    328 #define BTA_BLE_AD_BIT_SERVICE         BTM_BLE_AD_BIT_SERVICE
    329 #define BTA_BLE_AD_BIT_APPEARANCE      BTM_BLE_AD_BIT_APPEARANCE
    330 #define BTA_BLE_AD_BIT_PROPRIETARY     BTM_BLE_AD_BIT_PROPRIETARY
    331 #define BTA_DM_BLE_AD_BIT_SERVICE_SOL     BTM_BLE_AD_BIT_SERVICE_SOL
    332 #define BTA_DM_BLE_AD_BIT_SERVICE_DATA    BTM_BLE_AD_BIT_SERVICE_DATA
    333 #define BTA_DM_BLE_AD_BIT_SIGN_DATA       BTM_BLE_AD_BIT_SIGN_DATA
    334 #define BTA_DM_BLE_AD_BIT_SERVICE_128SOL  BTM_BLE_AD_BIT_SERVICE_128SOL
    335 #define BTA_DM_BLE_AD_BIT_PUBLIC_ADDR     BTM_BLE_AD_BIT_PUBLIC_ADDR
    336 #define BTA_DM_BLE_AD_BIT_RANDOM_ADDR     BTM_BLE_AD_BIT_RANDOM_ADDR
    337 #define BTA_DM_BLE_AD_BIT_SERVICE_128     BTM_BLE_AD_BIT_SERVICE_128      /*128-bit Service UUIDs*/
    338 
    339 typedef tBTM_BLE_AD_MASK tBTA_BLE_AD_MASK;
    340 typedef tBTM_BLE_INT_RANGE tBTA_BLE_INT_RANGE;
    341 typedef tBTM_BLE_SERVICE tBTA_BLE_SERVICE;
    342 typedef tBTM_BLE_PROP_ELEM tBTA_BLE_PROP_ELEM;
    343 typedef tBTM_BLE_PROPRIETARY tBTA_BLE_PROPRIETARY;
    344 typedef tBTM_BLE_MANU tBTA_BLE_MANU;
    345 typedef tBTM_BLE_SERVICE_DATA tBTA_BLE_SERVICE_DATA;
    346 typedef tBTM_BLE_128SERVICE tBTA_BLE_128SERVICE;
    347 typedef tBTM_BLE_32SERVICE  tBTA_BLE_32SERVICE;
    348 
    349 typedef struct
    350 {
    351     tBTA_BLE_INT_RANGE      int_range;          /* slave prefered conn interval range */
    352     tBTA_BLE_MANU           manu;            /* manufacturer data */
    353     tBTA_BLE_SERVICE        services;        /* 16 bits services */
    354     tBTA_BLE_128SERVICE     services_128b;   /* 128 bits service */
    355     tBTA_BLE_32SERVICE      service_32b;     /* 32 bits Service UUID */
    356     tBTA_BLE_SERVICE        sol_services;    /* 16 bits services Solicitation UUIDs */
    357     tBTA_BLE_32SERVICE      sol_service_32b; /* List of 32 bit Service Solicitation UUIDs */
    358     tBTA_BLE_128SERVICE     sol_service_128b;/* List of 128 bit Service Solicitation UUIDs */
    359     tBTA_BLE_PROPRIETARY    proprietary;     /* proprietary data */
    360     tBTA_BLE_SERVICE_DATA   service_data;    /* service data */
    361     UINT16                  appearance;         /* appearance data */
    362     UINT8                   flag;
    363     UINT8                   tx_power;
    364 }tBTA_BLE_ADV_DATA;
    365 
    366 typedef void (tBTA_SET_ADV_DATA_CMPL_CBACK) (tBTA_STATUS status);
    367 
    368 /* advertising channel map */
    369 #define BTA_BLE_ADV_CHNL_37 BTM_BLE_ADV_CHNL_37
    370 #define BTA_BLE_ADV_CHNL_38 BTM_BLE_ADV_CHNL_38
    371 #define BTA_BLE_ADV_CHNL_39 BTM_BLE_ADV_CHNL_39
    372 typedef tBTM_BLE_ADV_CHNL_MAP tBTA_BLE_ADV_CHNL_MAP; /* use as a bit mask */
    373 
    374 /* advertising filter policy */
    375 typedef tBTM_BLE_AFP   tBTA_BLE_AFP;
    376 
    377 /* adv event type */
    378 #define BTA_BLE_CONNECT_EVT         BTM_BLE_CONNECT_EVT     /* Connectable undirected advertising */
    379 #define BTA_BLE_CONNECT_DIR_EVT     BTM_BLE_CONNECT_DIR_EVT /* Connectable directed advertising */
    380 #define BTA_BLE_DISCOVER_EVT        BTM_BLE_DISCOVER_EVT    /* Scannable undirected advertising */
    381 #define BTA_BLE_NON_CONNECT_EVT     BTM_BLE_NON_CONNECT_EVT /* Non connectable undirected advertising */
    382 typedef UINT8 tBTA_BLE_ADV_EVT;
    383 
    384 /* adv tx power level */
    385 #define BTA_BLE_ADV_TX_POWER_MIN        0           /* minimum tx power */
    386 #define BTA_BLE_ADV_TX_POWER_LOW        1           /* low tx power     */
    387 #define BTA_BLE_ADV_TX_POWER_MID        2           /* middle tx power  */
    388 #define BTA_BLE_ADV_TX_POWER_UPPER      3           /* upper tx power   */
    389 #define BTA_BLE_ADV_TX_POWER_MAX        4           /* maximum tx power */
    390 typedef UINT8 tBTA_BLE_ADV_TX_POWER;
    391 
    392 /* advertising instance parameters */
    393 typedef struct
    394 {
    395     UINT16                  adv_int_min;            /* minimum adv interval */
    396     UINT16                  adv_int_max;            /* maximum adv interval */
    397     tBTA_BLE_ADV_EVT        adv_type;               /* adv event type */
    398     tBTA_BLE_ADV_CHNL_MAP   channel_map;            /* adv channel map */
    399     tBTA_BLE_AFP            adv_filter_policy;      /* advertising filter policy */
    400     tBTA_BLE_ADV_TX_POWER   tx_power;               /* adv tx power */
    401 }tBTA_BLE_ADV_PARAMS;
    402 
    403 /* These are the fields returned in each device adv packet.  It
    404 ** is returned in the results callback if registered.
    405 */
    406 typedef struct
    407 {
    408     UINT8               conn_mode;
    409     tBTA_BLE_AD_MASK    ad_mask;        /* mask of the valid adv data field */
    410     UINT8               flag;
    411     UINT8               tx_power_level;
    412     UINT8               remote_name_len;
    413     UINT8               *p_remote_name;
    414     tBTA_BLE_SERVICE    service;
    415 } tBTA_BLE_INQ_DATA;
    416 
    417 enum
    418 {
    419     BTA_BLE_BATCH_SCAN_MODE_PASS = 1,
    420     BTA_BLE_BATCH_SCAN_MODE_ACTI = 2,
    421     BTA_BLE_BATCH_SCAN_MODE_PASS_ACTI = 3
    422 };
    423 typedef UINT8 tBTA_BLE_BATCH_SCAN_MODE;
    424 
    425 enum
    426 {
    427     BTA_BLE_DISCARD_OLD_ITEMS=0,
    428     BTA_BLE_DISCARD_LOWER_RSSI_ITEMS=1
    429 };
    430 typedef UINT8 tBTA_BLE_DISCARD_RULE;
    431 
    432 enum
    433 {
    434     BTA_BLE_ADV_SEEN_FIRST_TIME=0,
    435     BTA_BLE_ADV_TRACKING_TIMEOUT=1
    436 };
    437 typedef UINT8 tBTA_BLE_ADV_CHANGE_REASON;
    438 
    439 enum
    440 {
    441     BTA_BLE_BATCH_SCAN_ENB_EVT      = 1,
    442     BTA_BLE_BATCH_SCAN_CFG_STRG_EVT = 2,
    443     BTA_BLE_BATCH_SCAN_DATA_EVT     = 3,
    444     BTA_BLE_BATCH_SCAN_THRES_EVT    = 4,
    445     BTA_BLE_BATCH_SCAN_PARAM_EVT    = 5,
    446     BTA_BLE_BATCH_SCAN_DIS_EVT      = 6
    447 };
    448 typedef tBTM_BLE_BATCH_SCAN_EVT tBTA_BLE_BATCH_SCAN_EVT;
    449 
    450 typedef tBTM_BLE_TRACK_ADV_ACTION tBTA_BLE_TRACK_ADV_ACTION;
    451 #endif
    452 
    453 /* BLE customer specific feature function type definitions */
    454 /* data type used on customer specific feature for RSSI monitoring */
    455 #define BTA_BLE_RSSI_ALERT_HI        0
    456 #define BTA_BLE_RSSI_ALERT_RANGE     1
    457 #define BTA_BLE_RSSI_ALERT_LO        2
    458 typedef UINT8 tBTA_DM_BLE_RSSI_ALERT_TYPE;
    459 
    460 #define BTA_BLE_RSSI_ALERT_NONE         BTM_BLE_RSSI_ALERT_NONE         /*    (0) */
    461 #define BTA_BLE_RSSI_ALERT_HI_BIT       BTM_BLE_RSSI_ALERT_HI_BIT       /*    (1) */
    462 #define BTA_BLE_RSSI_ALERT_RANGE_BIT    BTM_BLE_RSSI_ALERT_RANGE_BIT    /*    (1 << 1) */
    463 #define BTA_BLE_RSSI_ALERT_LO_BIT       BTM_BLE_RSSI_ALERT_LO_BIT       /*    (1 << 2) */
    464 typedef UINT8     tBTA_DM_BLE_RSSI_ALERT_MASK;
    465 
    466 
    467 typedef void (tBTA_DM_BLE_RSSI_CBACK) (BD_ADDR bd_addr, tBTA_DM_BLE_RSSI_ALERT_TYPE alert_type, INT8 rssi);
    468 
    469 /* max number of filter spot for different filter type */
    470 #define BTA_DM_BLE_MAX_UUID_FILTER     BTM_BLE_MAX_UUID_FILTER    /* 8 */
    471 #define BTA_DM_BLE_MAX_ADDR_FILTER     BTM_BLE_MAX_ADDR_FILTER    /* 8 */
    472 #define BTA_DM_BLE_PF_STR_COND_MAX     BTM_BLE_PF_STR_COND_MAX    /* 4    apply to manu data , or local name */
    473 #define BTA_DM_BLE_PF_STR_LEN_MAX      BTM_BLE_PF_STR_LEN_MAX     /* match for first 20 bytes */
    474 
    475 #define BTA_DM_BLE_PF_LOGIC_OR              0
    476 #define BTA_DM_BLE_PF_LOGIC_AND             1
    477 typedef UINT8 tBTA_DM_BLE_PF_LOGIC_TYPE;
    478 
    479 enum
    480 {
    481     BTA_DM_BLE_SCAN_COND_ADD,
    482     BTA_DM_BLE_SCAN_COND_DELETE,
    483     BTA_DM_BLE_SCAN_COND_CLEAR = 2
    484 };
    485 typedef UINT8 tBTA_DM_BLE_SCAN_COND_OP;
    486 
    487 /* ADV payload filtering vendor specific call event */
    488 enum
    489 {
    490     BTA_BLE_SCAN_PF_ENABLE_EVT = 7,
    491     BTA_BLE_SCAN_PF_COND_EVT
    492 };
    493 
    494 /* filter selection bit index  */
    495 #define BTA_DM_BLE_PF_ADDR_FILTER          BTM_BLE_PF_ADDR_FILTER
    496 #define BTA_DM_BLE_PF_SRVC_DATA            BTM_BLE_PF_SRVC_DATA
    497 #define BTA_DM_BLE_PF_SRVC_UUID            BTM_BLE_PF_SRVC_UUID
    498 #define BTA_DM_BLE_PF_SRVC_SOL_UUID        BTM_BLE_PF_SRVC_SOL_UUID
    499 #define BTA_DM_BLE_PF_LOCAL_NAME           BTM_BLE_PF_LOCAL_NAME
    500 #define BTA_DM_BLE_PF_MANU_DATA            BTM_BLE_PF_MANU_DATA
    501 #define BTA_DM_BLE_PF_SRVC_DATA_PATTERN    BTM_BLE_PF_SRVC_DATA_PATTERN
    502 #define BTA_DM_BLE_PF_TYPE_ALL             BTM_BLE_PF_TYPE_ALL
    503 #define BTA_DM_BLE_PF_TYPE_MAX             BTM_BLE_PF_TYPE_MAX
    504 typedef UINT8   tBTA_DM_BLE_PF_COND_TYPE;
    505 
    506 typedef union
    507 {
    508       UINT16              uuid16_mask;
    509       UINT32              uuid32_mask;
    510       UINT8               uuid128_mask[LEN_UUID_128];
    511 }tBTA_DM_BLE_PF_COND_MASK;
    512 
    513 typedef struct
    514 {
    515     tBLE_BD_ADDR                *p_target_addr;     /* target address, if NULL, generic UUID filter */
    516     tBT_UUID                    uuid;           /* UUID condition */
    517     tBTA_DM_BLE_PF_LOGIC_TYPE   cond_logic;    /* AND/OR */
    518     tBTA_DM_BLE_PF_COND_MASK    *p_uuid_mask;           /* UUID condition mask, if NULL, match exact as UUID condition */
    519 }tBTA_DM_BLE_PF_UUID_COND;
    520 
    521 typedef struct
    522 {
    523     UINT8                   data_len;       /* <= 20 bytes */
    524     UINT8                   *p_data;
    525 }tBTA_DM_BLE_PF_LOCAL_NAME_COND;
    526 
    527 typedef struct
    528 {
    529     UINT16                  company_id;     /* company ID */
    530     UINT8                   data_len;       /* <= 20 bytes */
    531     UINT8                   *p_pattern;
    532     UINT16                  company_id_mask; /* UUID value mask */
    533     UINT8                   *p_pattern_mask; /* Manufacturer data matching mask, same length
    534                                                 as data pattern, set to all 0xff, match exact data */
    535 }tBTA_DM_BLE_PF_MANU_COND;
    536 
    537 typedef struct
    538 {
    539     UINT16                  uuid;     /* service ID */
    540     UINT8                   data_len;       /* <= 20 bytes */
    541     UINT8                   *p_pattern;
    542     UINT8                   *p_pattern_mask; /* Service data matching mask, same length
    543                                                 as data pattern, set to all 0xff, match exact data */
    544 }tBTA_DM_BLE_PF_SRVC_PATTERN_COND;
    545 
    546 typedef union
    547 {
    548     tBLE_BD_ADDR                            target_addr;
    549     tBTA_DM_BLE_PF_LOCAL_NAME_COND             local_name; /* lcoal name filtering */
    550     tBTA_DM_BLE_PF_MANU_COND                   manu_data;  /* manufactuer data filtering */
    551     tBTA_DM_BLE_PF_UUID_COND                   srvc_uuid;  /* service UUID filtering */
    552     tBTA_DM_BLE_PF_UUID_COND                   solicitate_uuid;   /* solicitated service UUID filtering */
    553     tBTA_DM_BLE_PF_SRVC_PATTERN_COND           srvc_data;      /* service data pattern */
    554 }tBTA_DM_BLE_PF_COND_PARAM;
    555 
    556 typedef UINT8 tBTA_DM_BLE_PF_FILT_INDEX;
    557 typedef UINT8 tBTA_DM_BLE_PF_AVBL_SPACE;
    558 
    559 typedef INT8 tBTA_DM_RSSI_VALUE;
    560 typedef UINT8 tBTA_DM_LINK_QUALITY_VALUE;
    561 
    562 
    563 typedef UINT8 tBTA_SIG_STRENGTH_MASK;
    564 
    565 
    566 /* Security Callback Events */
    567 #define BTA_DM_ENABLE_EVT               0       /* Enable Event */
    568 #define BTA_DM_DISABLE_EVT              1       /* Disable Event */
    569 #define BTA_DM_PIN_REQ_EVT              2       /* PIN request. */
    570 #define BTA_DM_AUTH_CMPL_EVT            3       /* Authentication complete indication. */
    571 #define BTA_DM_AUTHORIZE_EVT            4       /* Authorization request. */
    572 #define BTA_DM_LINK_UP_EVT              5       /* Connection UP event */
    573 #define BTA_DM_LINK_DOWN_EVT            6       /* Connection DOWN event */
    574 #define BTA_DM_SIG_STRENGTH_EVT         7       /* Signal strength for bluetooth connection */
    575 #define BTA_DM_BUSY_LEVEL_EVT           8       /* System busy level */
    576 #define BTA_DM_BOND_CANCEL_CMPL_EVT     9       /* Bond cancel complete indication */
    577 #define BTA_DM_SP_CFM_REQ_EVT           10      /* Simple Pairing User Confirmation request. */
    578 #define BTA_DM_SP_KEY_NOTIF_EVT         11      /* Simple Pairing Passkey Notification */
    579 #define BTA_DM_SP_RMT_OOB_EVT           12      /* Simple Pairing Remote OOB Data request. */
    580 #define BTA_DM_SP_KEYPRESS_EVT          13      /* Key press notification event. */
    581 #define BTA_DM_ROLE_CHG_EVT             14      /* Role Change event. */
    582 #define BTA_DM_BLE_KEY_EVT              15      /* BLE SMP key event for peer device keys */
    583 #define BTA_DM_BLE_SEC_REQ_EVT          16      /* BLE SMP security request */
    584 #define BTA_DM_BLE_PASSKEY_NOTIF_EVT    17      /* SMP passkey notification event */
    585 #define BTA_DM_BLE_PASSKEY_REQ_EVT      18      /* SMP passkey request event */
    586 #define BTA_DM_BLE_OOB_REQ_EVT          19      /* SMP OOB request event */
    587 #define BTA_DM_BLE_LOCAL_IR_EVT         20      /* BLE local IR event */
    588 #define BTA_DM_BLE_LOCAL_ER_EVT         21      /* BLE local ER event */
    589 #define BTA_DM_BLE_NC_REQ_EVT           22      /* SMP Numeric Comparison request event */
    590 #define BTA_DM_SP_RMT_OOB_EXT_EVT       23      /* Simple Pairing Remote OOB Extended Data request. */
    591 #define BTA_DM_BLE_AUTH_CMPL_EVT        24      /* BLE Auth complete */
    592 #define BTA_DM_DEV_UNPAIRED_EVT         25
    593 #define BTA_DM_HW_ERROR_EVT             26      /* BT Chip H/W error */
    594 #define BTA_DM_LE_FEATURES_READ         27      /* Cotroller specific LE features are read */
    595 #define BTA_DM_ENER_INFO_READ           28      /* Energy info read */
    596 typedef UINT8 tBTA_DM_SEC_EVT;
    597 
    598 /* Structure associated with BTA_DM_ENABLE_EVT */
    599 typedef struct
    600 {
    601     tBTA_STATUS    status;
    602 } tBTA_DM_ENABLE;
    603 
    604 /* Structure associated with BTA_DM_PIN_REQ_EVT */
    605 typedef struct
    606 {
    607     /* Note: First 3 data members must be, bd_addr, dev_class, and bd_name in order */
    608     BD_ADDR         bd_addr;            /* BD address peer device. */
    609     DEV_CLASS       dev_class;          /* Class of Device */
    610     BD_NAME         bd_name;            /* Name of peer device. */
    611     BOOLEAN         min_16_digit;       /* TRUE if the pin returned must be at least 16 digits */
    612 } tBTA_DM_PIN_REQ;
    613 
    614 /* BLE related definition */
    615 
    616 #define BTA_DM_AUTH_FAIL_BASE                   (HCI_ERR_MAX_ERR + 10)
    617 #define BTA_DM_AUTH_CONVERT_SMP_CODE(x)        (BTA_DM_AUTH_FAIL_BASE + (x))
    618 #define BTA_DM_AUTH_SMP_PASSKEY_FAIL             BTA_DM_AUTH_CONVERT_SMP_CODE (SMP_PASSKEY_ENTRY_FAIL)
    619 #define BTA_DM_AUTH_SMP_OOB_FAIL                (BTA_DM_AUTH_FAIL_BASE + SMP_OOB_FAIL)
    620 #define BTA_DM_AUTH_SMP_PAIR_AUTH_FAIL          (BTA_DM_AUTH_FAIL_BASE + SMP_PAIR_AUTH_FAIL)
    621 #define BTA_DM_AUTH_SMP_CONFIRM_VALUE_FAIL      (BTA_DM_AUTH_FAIL_BASE + SMP_CONFIRM_VALUE_ERR)
    622 #define BTA_DM_AUTH_SMP_PAIR_NOT_SUPPORT        (BTA_DM_AUTH_FAIL_BASE + SMP_PAIR_NOT_SUPPORT)
    623 #define BTA_DM_AUTH_SMP_ENC_KEY_SIZE            (BTA_DM_AUTH_FAIL_BASE + SMP_ENC_KEY_SIZE)
    624 #define BTA_DM_AUTH_SMP_INVALID_CMD             (BTA_DM_AUTH_FAIL_BASE + SMP_INVALID_CMD)
    625 #define BTA_DM_AUTH_SMP_UNKNOWN_ERR             (BTA_DM_AUTH_FAIL_BASE + SMP_PAIR_FAIL_UNKNOWN)
    626 #define BTA_DM_AUTH_SMP_REPEATED_ATTEMPT        (BTA_DM_AUTH_FAIL_BASE + SMP_REPEATED_ATTEMPTS)
    627 #define BTA_DM_AUTH_SMP_INVALID_PARAMETERS      (BTA_DM_AUTH_FAIL_BASE + SMP_INVALID_PARAMETERS)
    628 #define BTA_DM_AUTH_SMP_INTERNAL_ERR            (BTA_DM_AUTH_FAIL_BASE + SMP_PAIR_INTERNAL_ERR)
    629 #define BTA_DM_AUTH_SMP_UNKNOWN_IO              (BTA_DM_AUTH_FAIL_BASE + SMP_UNKNOWN_IO_CAP)
    630 #define BTA_DM_AUTH_SMP_INIT_FAIL               (BTA_DM_AUTH_FAIL_BASE + SMP_INIT_FAIL)
    631 #define BTA_DM_AUTH_SMP_CONFIRM_FAIL            (BTA_DM_AUTH_FAIL_BASE + SMP_CONFIRM_FAIL)
    632 #define BTA_DM_AUTH_SMP_BUSY                    (BTA_DM_AUTH_FAIL_BASE + SMP_BUSY)
    633 #define BTA_DM_AUTH_SMP_ENC_FAIL                (BTA_DM_AUTH_FAIL_BASE + SMP_ENC_FAIL)
    634 #define BTA_DM_AUTH_SMP_RSP_TIMEOUT             (BTA_DM_AUTH_FAIL_BASE + SMP_RSP_TIMEOUT)
    635 
    636 /* connection parameter boundary value and dummy value */
    637 #define BTA_DM_BLE_SCAN_INT_MIN          BTM_BLE_SCAN_INT_MIN
    638 #define BTA_DM_BLE_SCAN_INT_MAX          BTM_BLE_SCAN_INT_MAX
    639 #define BTA_DM_BLE_SCAN_WIN_MIN          BTM_BLE_SCAN_WIN_MIN
    640 #define BTA_DM_BLE_SCAN_WIN_MAX          BTM_BLE_SCAN_WIN_MAX
    641 #define BTA_DM_BLE_CONN_INT_MIN          BTM_BLE_CONN_INT_MIN
    642 #define BTA_DM_BLE_CONN_INT_MAX          BTM_BLE_CONN_INT_MAX
    643 #define BTA_DM_BLE_CONN_LATENCY_MAX      BTM_BLE_CONN_LATENCY_MAX
    644 #define BTA_DM_BLE_CONN_SUP_TOUT_MIN     BTM_BLE_CONN_SUP_TOUT_MIN
    645 #define BTA_DM_BLE_CONN_SUP_TOUT_MAX     BTM_BLE_CONN_SUP_TOUT_MAX
    646 #define BTA_DM_BLE_CONN_PARAM_UNDEF      BTM_BLE_CONN_PARAM_UNDEF  /* use this value when a specific value not to be overwritten */
    647 
    648 
    649 #define BTA_LE_KEY_PENC      BTM_LE_KEY_PENC  /* encryption information of peer device */
    650 #define BTA_LE_KEY_PID       BTM_LE_KEY_PID   /* identity key of the peer device */
    651 #define BTA_LE_KEY_PCSRK     BTM_LE_KEY_PCSRK   /* peer SRK */
    652 #define BTA_LE_KEY_LENC      BTM_LE_KEY_LENC        /* master role security information:div */
    653 #define BTA_LE_KEY_LID       BTM_LE_KEY_LID         /* master device ID key */
    654 #define BTA_LE_KEY_LCSRK     BTM_LE_KEY_LCSRK        /* local CSRK has been deliver to peer */
    655 typedef UINT8 tBTA_LE_KEY_TYPE; /* can be used as a bit mask */
    656 
    657 
    658 typedef tBTM_LE_PENC_KEYS  tBTA_LE_PENC_KEYS ;
    659 typedef tBTM_LE_PCSRK_KEYS tBTA_LE_PCSRK_KEYS;
    660 typedef tBTM_LE_LENC_KEYS  tBTA_LE_LENC_KEYS  ;
    661 typedef tBTM_LE_LCSRK_KEYS tBTA_LE_LCSRK_KEYS ;
    662 typedef tBTM_LE_PID_KEYS   tBTA_LE_PID_KEYS ;
    663 
    664 typedef union
    665 {
    666     tBTA_LE_PENC_KEYS   penc_key;       /* received peer encryption key */
    667     tBTA_LE_PCSRK_KEYS  psrk_key;       /* received peer device SRK */
    668     tBTA_LE_PID_KEYS    pid_key;        /* peer device ID key */
    669     tBTA_LE_LENC_KEYS   lenc_key;       /* local encryption reproduction keys LTK = = d1(ER,DIV,0)*/
    670     tBTA_LE_LCSRK_KEYS  lcsrk_key;      /* local device CSRK = d1(ER,DIV,1)*/
    671     tBTA_LE_PID_KEYS    lid_key;        /* local device ID key for the particular remote */
    672 }tBTA_LE_KEY_VALUE;
    673 
    674 #define BTA_BLE_LOCAL_KEY_TYPE_ID         1
    675 #define BTA_BLE_LOCAL_KEY_TYPE_ER         2
    676 typedef UINT8 tBTA_DM_BLE_LOCAL_KEY_MASK;
    677 
    678 typedef struct
    679 {
    680     BT_OCTET16       ir;
    681     BT_OCTET16       irk;
    682     BT_OCTET16       dhk;
    683 }tBTA_BLE_LOCAL_ID_KEYS;
    684 
    685 #define BTA_DM_SEC_GRANTED              BTA_SUCCESS
    686 #define BTA_DM_SEC_PAIR_NOT_SPT         BTA_DM_AUTH_SMP_PAIR_NOT_SUPPORT
    687 #define BTA_DM_SEC_REP_ATTEMPTS         BTA_DM_AUTH_SMP_REPEATED_ATTEMPT
    688 typedef UINT8 tBTA_DM_BLE_SEC_GRANT;
    689 
    690 
    691 #define BTA_DM_BLE_ONN_NONE             BTM_BLE_CONN_NONE
    692 #define BTA_DM_BLE_CONN_AUTO            BTM_BLE_CONN_AUTO
    693 #define BTA_DM_BLE_CONN_SELECTIVE       BTM_BLE_CONN_SELECTIVE
    694 typedef UINT8 tBTA_DM_BLE_CONN_TYPE;
    695 
    696 typedef BOOLEAN (tBTA_DM_BLE_SEL_CBACK)(BD_ADDR random_bda, UINT8 *p_remote_name);
    697 
    698 /* Structure associated with BTA_DM_BLE_SEC_REQ_EVT */
    699 typedef struct
    700 {
    701     BD_ADDR         bd_addr;        /* peer address */
    702     BD_NAME         bd_name;        /* peer device name */
    703 } tBTA_DM_BLE_SEC_REQ;
    704 
    705 typedef struct
    706 {
    707     BD_ADDR                 bd_addr;        /* peer address */
    708     tBTM_LE_KEY_TYPE        key_type;
    709     tBTM_LE_KEY_VALUE       *p_key_value;
    710 }tBTA_DM_BLE_KEY;
    711 
    712 /* Structure associated with BTA_DM_AUTH_CMPL_EVT */
    713 typedef struct
    714 {
    715     BD_ADDR         bd_addr;            /* BD address peer device. */
    716     BD_NAME         bd_name;            /* Name of peer device. */
    717     BOOLEAN         key_present;        /* Valid link key value in key element */
    718     LINK_KEY        key;                /* Link key associated with peer device. */
    719     UINT8           key_type;           /* The type of Link Key */
    720     BOOLEAN         success;            /* TRUE of authentication succeeded, FALSE if failed. */
    721     UINT8           fail_reason;        /* The HCI reason/error code for when success=FALSE */
    722     tBLE_ADDR_TYPE  addr_type;          /* Peer device address type */
    723     tBT_DEVICE_TYPE dev_type;
    724 } tBTA_DM_AUTH_CMPL;
    725 
    726 
    727 /* Structure associated with BTA_DM_AUTHORIZE_EVT */
    728 typedef struct
    729 {
    730     BD_ADDR         bd_addr;            /* BD address peer device. */
    731     BD_NAME         bd_name;            /* Name of peer device. */
    732     tBTA_SERVICE_ID service;            /* Service ID to authorize. */
    733     DEV_CLASS      dev_class;
    734 } tBTA_DM_AUTHORIZE;
    735 
    736 /* Structure associated with BTA_DM_LINK_UP_EVT */
    737 typedef struct
    738 {
    739     BD_ADDR         bd_addr;            /* BD address peer device. */
    740 #if BLE_INCLUDED == TRUE
    741     tBTA_TRANSPORT  link_type;
    742 #endif
    743 } tBTA_DM_LINK_UP;
    744 
    745 /* Structure associated with BTA_DM_LINK_DOWN_EVT */
    746 typedef struct
    747 {
    748     BD_ADDR         bd_addr;            /* BD address peer device. */
    749     UINT8           status;             /* connection open/closed */
    750     BOOLEAN         is_removed;         /* TRUE if device is removed when link is down */
    751 #if BLE_INCLUDED == TRUE
    752     tBTA_TRANSPORT  link_type;
    753 #endif
    754 } tBTA_DM_LINK_DOWN;
    755 
    756 /* Structure associated with BTA_DM_ROLE_CHG_EVT */
    757 typedef struct
    758 {
    759     BD_ADDR         bd_addr;            /* BD address peer device. */
    760     UINT8           new_role;           /* the new connection role */
    761 } tBTA_DM_ROLE_CHG;
    762 
    763 /* Structure associated with BTA_DM_BUSY_LEVEL_EVT */
    764 typedef struct
    765 {
    766     UINT8           level;     /* when paging or inquiring, level is 10.
    767                                     Otherwise, the number of ACL links */
    768     UINT8           level_flags; /* indicates individual flags */
    769 } tBTA_DM_BUSY_LEVEL;
    770 
    771 #define BTA_IO_CAP_OUT      BTM_IO_CAP_OUT      /* 0 DisplayOnly */
    772 #define BTA_IO_CAP_IO       BTM_IO_CAP_IO       /* 1 DisplayYesNo */
    773 #define BTA_IO_CAP_IN       BTM_IO_CAP_IN       /* 2 KeyboardOnly */
    774 #define BTA_IO_CAP_NONE     BTM_IO_CAP_NONE     /* 3 NoInputNoOutput */
    775 #if BLE_INCLUDED == TRUE && SMP_INCLUDED == TRUE
    776 #define BTA_IO_CAP_KBDISP   BTM_IO_CAP_KBDISP   /* 4 Keyboard display */
    777 #endif
    778 typedef tBTM_IO_CAP     tBTA_IO_CAP;
    779 
    780 #define BTA_AUTH_SP_NO    BTM_AUTH_SP_NO      /* 0 MITM Protection Not Required - Single Profile/non-bonding
    781                                                 Numeric comparison with automatic accept allowed */
    782 #define BTA_AUTH_SP_YES   BTM_AUTH_SP_YES     /* 1 MITM Protection Required - Single Profile/non-bonding
    783                                                 Use IO Capabilities to determine authentication procedure */
    784 #define BTA_AUTH_AP_NO    BTM_AUTH_AP_NO      /* 2 MITM Protection Not Required - All Profiles/dedicated bonding
    785                                                 Numeric comparison with automatic accept allowed */
    786 #define BTA_AUTH_AP_YES   BTM_AUTH_AP_YES     /* 3 MITM Protection Required - All Profiles/dedicated bonding
    787                                                 Use IO Capabilities to determine authentication procedure */
    788 #define BTA_AUTH_SPGB_NO  BTM_AUTH_SPGB_NO    /* 4 MITM Protection Not Required - Single Profiles/general bonding
    789                                                 Numeric comparison with automatic accept allowed */
    790 #define BTA_AUTH_SPGB_YES BTM_AUTH_SPGB_YES   /* 5 MITM Protection Required - Single Profiles/general bonding
    791                                                 Use IO Capabilities to determine authentication procedure */
    792 typedef tBTM_AUTH_REQ   tBTA_AUTH_REQ;
    793 
    794 #define BTA_AUTH_DD_BOND    BTM_AUTH_DD_BOND  /* 2 this bit is set for dedicated bonding */
    795 #define BTA_AUTH_GEN_BOND   BTM_AUTH_SPGB_NO  /* 4 this bit is set for general bonding */
    796 #define BTA_AUTH_BONDS      BTM_AUTH_BONDS    /* 6 the general/dedicated bonding bits  */
    797 
    798 #define BTA_LE_AUTH_NO_BOND    BTM_LE_AUTH_REQ_NO_BOND  /* 0*/
    799 #define BTA_LE_AUTH_BOND       BTM_LE_AUTH_REQ_BOND     /* 1 << 0 */
    800 #define BTA_LE_AUTH_REQ_MITM   BTM_LE_AUTH_REQ_MITM    /* 1 << 2 */
    801 
    802 #define BTA_LE_AUTH_REQ_SC_ONLY         BTM_LE_AUTH_REQ_SC_ONLY         /* 1 << 3 */
    803 #define BTA_LE_AUTH_REQ_SC_BOND         BTM_LE_AUTH_REQ_SC_BOND      /* 1001 */
    804 #define BTA_LE_AUTH_REQ_SC_MITM         BTM_LE_AUTH_REQ_SC_MITM      /* 1100 */
    805 #define BTA_LE_AUTH_REQ_SC_MITM_BOND    BTM_LE_AUTH_REQ_SC_MITM_BOND /* 1101 */
    806 typedef tBTM_LE_AUTH_REQ       tBTA_LE_AUTH_REQ;       /* combination of the above bit pattern */
    807 
    808 #define BTA_OOB_NONE        BTM_OOB_NONE
    809 #define BTA_OOB_PRESENT     BTM_OOB_PRESENT
    810 #define BTA_OOB_UNKNOWN     BTM_OOB_UNKNOWN
    811 
    812 typedef tBTM_OOB_DATA   tBTA_OOB_DATA;
    813 
    814 /* Structure associated with BTA_DM_SP_CFM_REQ_EVT */
    815 typedef struct
    816 {
    817     /* Note: First 3 data members must be, bd_addr, dev_class, and bd_name in order */
    818     BD_ADDR         bd_addr;        /* peer address */
    819     DEV_CLASS       dev_class;      /* peer CoD */
    820     BD_NAME         bd_name;        /* peer device name */
    821     UINT32          num_val;        /* the numeric value for comparison. If just_works, do not show this number to UI */
    822     BOOLEAN         just_works;     /* TRUE, if "Just Works" association model */
    823     tBTA_AUTH_REQ   loc_auth_req;   /* Authentication required for local device */
    824     tBTA_AUTH_REQ   rmt_auth_req;   /* Authentication required for peer device */
    825     tBTA_IO_CAP     loc_io_caps;    /* IO Capabilities of local device */
    826     tBTA_AUTH_REQ   rmt_io_caps;    /* IO Capabilities of remote device */
    827 } tBTA_DM_SP_CFM_REQ;
    828 
    829 enum
    830 {
    831     BTA_SP_KEY_STARTED,         /* passkey entry started */
    832     BTA_SP_KEY_ENTERED,         /* passkey digit entered */
    833     BTA_SP_KEY_ERASED,          /* passkey digit erased */
    834     BTA_SP_KEY_CLEARED,         /* passkey cleared */
    835     BTA_SP_KEY_COMPLT           /* passkey entry completed */
    836 };
    837 typedef UINT8   tBTA_SP_KEY_TYPE;
    838 
    839 /* Structure associated with BTA_DM_SP_KEYPRESS_EVT */
    840 typedef struct
    841 {
    842     BD_ADDR             bd_addr;        /* peer address */
    843     tBTA_SP_KEY_TYPE   notif_type;
    844 }tBTA_DM_SP_KEY_PRESS;
    845 
    846 /* Structure associated with BTA_DM_SP_KEY_NOTIF_EVT */
    847 typedef struct
    848 {
    849     /* Note: First 3 data members must be, bd_addr, dev_class, and bd_name in order */
    850     BD_ADDR         bd_addr;        /* peer address */
    851     DEV_CLASS       dev_class;      /* peer CoD */
    852     BD_NAME         bd_name;        /* peer device name */
    853     UINT32          passkey;        /* the numeric value for comparison. If just_works, do not show this number to UI */
    854 } tBTA_DM_SP_KEY_NOTIF;
    855 
    856 /* Structure associated with BTA_DM_SP_RMT_OOB_EVT */
    857 typedef struct
    858 {
    859     /* Note: First 3 data members must be, bd_addr, dev_class, and bd_name in order */
    860     BD_ADDR         bd_addr;        /* peer address */
    861     DEV_CLASS       dev_class;      /* peer CoD */
    862     BD_NAME         bd_name;        /* peer device name */
    863 } tBTA_DM_SP_RMT_OOB;
    864 
    865 /* Structure associated with BTA_DM_BOND_CANCEL_CMPL_EVT */
    866 typedef struct
    867 {
    868     tBTA_STATUS     result;    /* TRUE of bond cancel succeeded, FALSE if failed. */
    869 } tBTA_DM_BOND_CANCEL_CMPL;
    870 
    871 /* Union of all security callback structures */
    872 typedef union
    873 {
    874     tBTA_DM_ENABLE      enable;         /* BTA enabled */
    875     tBTA_DM_PIN_REQ     pin_req;        /* PIN request. */
    876     tBTA_DM_AUTH_CMPL   auth_cmpl;      /* Authentication complete indication. */
    877     tBTA_DM_AUTHORIZE   authorize;      /* Authorization request. */
    878     tBTA_DM_LINK_UP     link_up;       /* ACL connection down event */
    879     tBTA_DM_LINK_DOWN   link_down;       /* ACL connection down event */
    880     tBTA_DM_BUSY_LEVEL  busy_level;     /* System busy level */
    881     tBTA_DM_SP_CFM_REQ  cfm_req;        /* user confirm request */
    882     tBTA_DM_SP_KEY_NOTIF key_notif;     /* passkey notification */
    883     tBTA_DM_SP_RMT_OOB  rmt_oob;        /* remote oob */
    884     tBTA_DM_BOND_CANCEL_CMPL bond_cancel_cmpl; /* Bond Cancel Complete indication */
    885     tBTA_DM_SP_KEY_PRESS   key_press;   /* key press notification event */
    886     tBTA_DM_ROLE_CHG     role_chg;       /* role change event */
    887     tBTA_DM_BLE_SEC_REQ  ble_req;        /* BLE SMP related request */
    888     tBTA_DM_BLE_KEY      ble_key;        /* BLE SMP keys used when pairing */
    889     tBTA_BLE_LOCAL_ID_KEYS  ble_id_keys;  /* IR event */
    890     BT_OCTET16              ble_er;       /* ER event data */
    891 } tBTA_DM_SEC;
    892 
    893 /* Security callback */
    894 typedef void (tBTA_DM_SEC_CBACK)(tBTA_DM_SEC_EVT event, tBTA_DM_SEC *p_data);
    895 
    896 #define BTA_BLE_MULTI_ADV_ILLEGAL 0
    897 
    898 /* multi adv callback event */
    899 #define BTA_BLE_MULTI_ADV_ENB_EVT           1
    900 #define BTA_BLE_MULTI_ADV_DISABLE_EVT       2
    901 #define BTA_BLE_MULTI_ADV_PARAM_EVT         3
    902 #define BTA_BLE_MULTI_ADV_DATA_EVT          4
    903 
    904 typedef UINT8 tBTA_BLE_MULTI_ADV_EVT;
    905 
    906 /* multi adv callback */
    907 typedef void (tBTA_BLE_MULTI_ADV_CBACK)(tBTA_BLE_MULTI_ADV_EVT event,
    908                                         UINT8 inst_id, void *p_ref, tBTA_STATUS status);
    909 typedef UINT32 tBTA_DM_BLE_REF_VALUE;
    910 
    911 #define BTA_DM_BLE_PF_ENABLE_EVT       BTM_BLE_PF_ENABLE
    912 #define BTA_DM_BLE_PF_CONFIG_EVT       BTM_BLE_PF_CONFIG
    913 typedef UINT8 tBTA_DM_BLE_PF_EVT;
    914 
    915 #define BTA_DM_BLE_PF_ENABLE       1
    916 #define BTA_DM_BLE_PF_CONFIG       2
    917 typedef UINT8 tBTA_DM_BLE_PF_ACTION;
    918 
    919 /* Config callback */
    920 typedef void (tBTA_DM_BLE_PF_CFG_CBACK) (tBTA_DM_BLE_PF_ACTION action,
    921                                          tBTA_DM_BLE_PF_COND_TYPE cfg_cond,
    922                                          tBTA_DM_BLE_PF_AVBL_SPACE avbl_space, tBTA_STATUS status,
    923                                          tBTA_DM_BLE_REF_VALUE ref_value);
    924 /* Param callback */
    925 typedef void (tBTA_DM_BLE_PF_PARAM_CBACK) (UINT8 action_type, tBTA_DM_BLE_PF_AVBL_SPACE avbl_space,
    926                                            tBTA_DM_BLE_REF_VALUE ref_value, tBTA_STATUS status);
    927 
    928 /* Status callback */
    929 typedef void (tBTA_DM_BLE_PF_STATUS_CBACK) (UINT8 action, tBTA_STATUS status,
    930                                             tBTA_DM_BLE_REF_VALUE ref_value);
    931 
    932 
    933 #define BTA_DM_BLE_PF_BRDCAST_ADDR_FILT  1
    934 #define BTA_DM_BLE_PF_SERV_DATA_CHG_FILT 2
    935 #define BTA_DM_BLE_PF_SERV_UUID          4
    936 #define BTA_DM_BLE_PF_SERV_SOLC_UUID     8
    937 #define BTA_DM_BLE_PF_LOC_NAME_CHECK    16
    938 #define BTA_DM_BLE_PF_MANUF_NAME_CHECK  32
    939 #define BTA_DM_BLE_PF_SERV_DATA_CHECK   64
    940 typedef UINT16 tBTA_DM_BLE_PF_FEAT_SEL;
    941 
    942 #define BTA_DM_BLE_PF_LIST_LOGIC_OR   1
    943 #define BTA_DM_BLE_PF_LIST_LOGIC_AND  2
    944 typedef UINT16 tBTA_DM_BLE_PF_LIST_LOGIC_TYPE;
    945 
    946 #define BTA_DM_BLE_PF_FILT_LOGIC_OR   0
    947 #define BTA_DM_BLE_PF_FILT_LOGIC_AND  1
    948 typedef UINT16 tBTA_DM_BLE_PF_FILT_LOGIC_TYPE;
    949 
    950 typedef UINT8  tBTA_DM_BLE_PF_RSSI_THRESHOLD;
    951 typedef UINT8  tBTA_DM_BLE_PF_DELIVERY_MODE;
    952 typedef UINT16 tBTA_DM_BLE_PF_TIMEOUT;
    953 typedef UINT8  tBTA_DM_BLE_PF_TIMEOUT_CNT;
    954 typedef UINT16 tBTA_DM_BLE_PF_ADV_TRACK_ENTRIES;
    955 
    956 typedef struct
    957 {
    958     tBTA_DM_BLE_PF_FEAT_SEL feat_seln;
    959     tBTA_DM_BLE_PF_LIST_LOGIC_TYPE list_logic_type;
    960     tBTA_DM_BLE_PF_FILT_LOGIC_TYPE filt_logic_type;
    961     tBTA_DM_BLE_PF_RSSI_THRESHOLD  rssi_high_thres;
    962     tBTA_DM_BLE_PF_RSSI_THRESHOLD  rssi_low_thres;
    963     tBTA_DM_BLE_PF_DELIVERY_MODE dely_mode;
    964     tBTA_DM_BLE_PF_TIMEOUT found_timeout;
    965     tBTA_DM_BLE_PF_TIMEOUT lost_timeout;
    966     tBTA_DM_BLE_PF_TIMEOUT_CNT found_timeout_cnt;
    967     tBTA_DM_BLE_PF_ADV_TRACK_ENTRIES num_of_tracking_entries;
    968 } tBTA_DM_BLE_PF_FILT_PARAMS;
    969 
    970 /* Search callback events */
    971 #define BTA_DM_INQ_RES_EVT              0       /* Inquiry result for a peer device. */
    972 #define BTA_DM_INQ_CMPL_EVT             1       /* Inquiry complete. */
    973 #define BTA_DM_DISC_RES_EVT             2       /* Discovery result for a peer device. */
    974 #define BTA_DM_DISC_BLE_RES_EVT         3       /* Discovery result for BLE GATT based servoce on a peer device. */
    975 #define BTA_DM_DISC_CMPL_EVT            4       /* Discovery complete. */
    976 #define BTA_DM_DI_DISC_CMPL_EVT         5       /* Discovery complete. */
    977 #define BTA_DM_SEARCH_CANCEL_CMPL_EVT   6       /* Search cancelled */
    978 
    979 typedef UINT8 tBTA_DM_SEARCH_EVT;
    980 
    981 #define BTA_DM_INQ_RES_IGNORE_RSSI      BTM_INQ_RES_IGNORE_RSSI /* 0x7f RSSI value not supplied (ignore it) */
    982 
    983 /* Structure associated with BTA_DM_INQ_RES_EVT */
    984 typedef struct
    985 {
    986     BD_ADDR         bd_addr;                /* BD address peer device. */
    987     DEV_CLASS       dev_class;              /* Device class of peer device. */
    988     BOOLEAN         remt_name_not_required; /* Application sets this flag if it already knows the name of the device */
    989                                             /* If the device name is known to application BTA skips the remote name request */
    990     BOOLEAN         is_limited;             /* TRUE, if the limited inquiry bit is set in the CoD */
    991     INT8            rssi;                   /* The rssi value */
    992     UINT8           *p_eir;                 /* received EIR */
    993 #if (BLE_INCLUDED == TRUE)
    994     UINT8               inq_result_type;
    995     UINT8               ble_addr_type;
    996     tBTM_BLE_EVT_TYPE   ble_evt_type;
    997     tBT_DEVICE_TYPE     device_type;
    998     UINT8               flag;
    999 #endif
   1000 
   1001 } tBTA_DM_INQ_RES;
   1002 
   1003 /* Structure associated with BTA_DM_INQ_CMPL_EVT */
   1004 typedef struct
   1005 {
   1006     UINT8           num_resps;          /* Number of inquiry responses. */
   1007 } tBTA_DM_INQ_CMPL;
   1008 
   1009 /* Structure associated with BTA_DM_DI_DISC_CMPL_EVT */
   1010 typedef struct
   1011 {
   1012     BD_ADDR             bd_addr;        /* BD address peer device. */
   1013     UINT8               num_record;     /* Number of DI record */
   1014     tBTA_STATUS         result;
   1015 } tBTA_DM_DI_DISC_CMPL;
   1016 
   1017 /* Structure associated with BTA_DM_DISC_RES_EVT */
   1018 typedef struct
   1019 {
   1020     BD_ADDR             bd_addr;        /* BD address peer device. */
   1021     BD_NAME             bd_name;        /* Name of peer device. */
   1022     tBTA_SERVICE_MASK   services;       /* Services found on peer device. */
   1023     UINT8           *   p_raw_data;     /* Raw data for discovery DB */
   1024     UINT32              raw_data_size;  /* size of raw data */
   1025     tBT_DEVICE_TYPE     device_type;    /* device type in case it is BLE device */
   1026     UINT32              num_uuids;
   1027     UINT8               *p_uuid_list;
   1028     tBTA_STATUS         result;
   1029 } tBTA_DM_DISC_RES;
   1030 
   1031 /* Structure associated with tBTA_DM_DISC_BLE_RES */
   1032 typedef struct
   1033 {
   1034     BD_ADDR             bd_addr;        /* BD address peer device. */
   1035     BD_NAME             bd_name;        /* Name of peer device. */
   1036     tBT_UUID            service;        /* GATT based Services UUID found on peer device. */
   1037 } tBTA_DM_DISC_BLE_RES;
   1038 
   1039 
   1040 /* Union of all search callback structures */
   1041 typedef union
   1042 {
   1043     tBTA_DM_INQ_RES     inq_res;        /* Inquiry result for a peer device. */
   1044     tBTA_DM_INQ_CMPL    inq_cmpl;       /* Inquiry complete. */
   1045     tBTA_DM_DISC_RES    disc_res;       /* Discovery result for a peer device. */
   1046     tBTA_DM_DISC_BLE_RES    disc_ble_res;   /* discovery result for GATT based service */
   1047     tBTA_DM_DI_DISC_CMPL    di_disc;        /* DI discovery result for a peer device */
   1048 
   1049 } tBTA_DM_SEARCH;
   1050 
   1051 /* Search callback */
   1052 typedef void (tBTA_DM_SEARCH_CBACK)(tBTA_DM_SEARCH_EVT event, tBTA_DM_SEARCH *p_data);
   1053 
   1054 /* Execute call back */
   1055 typedef void (tBTA_DM_EXEC_CBACK) (void * p_param);
   1056 
   1057 /* Encryption callback*/
   1058 typedef void (tBTA_DM_ENCRYPT_CBACK) (BD_ADDR bd_addr, tBTA_TRANSPORT transport, tBTA_STATUS result);
   1059 
   1060 #define BTA_DM_BLE_SEC_NONE         BTM_BLE_SEC_NONE
   1061 #define BTA_DM_BLE_SEC_ENCRYPT      BTM_BLE_SEC_ENCRYPT
   1062 #define BTA_DM_BLE_SEC_NO_MITM      BTM_BLE_SEC_ENCRYPT_NO_MITM
   1063 #define BTA_DM_BLE_SEC_MITM         BTM_BLE_SEC_ENCRYPT_MITM
   1064 typedef tBTM_BLE_SEC_ACT            tBTA_DM_BLE_SEC_ACT;
   1065 
   1066 #if BLE_INCLUDED == TRUE
   1067 typedef tBTM_BLE_TX_TIME_MS         tBTA_DM_BLE_TX_TIME_MS;
   1068 typedef tBTM_BLE_RX_TIME_MS         tBTA_DM_BLE_RX_TIME_MS;
   1069 typedef tBTM_BLE_IDLE_TIME_MS       tBTA_DM_BLE_IDLE_TIME_MS;
   1070 typedef tBTM_BLE_ENERGY_USED        tBTA_DM_BLE_ENERGY_USED;
   1071 
   1072 #define BTA_DM_CONTRL_UNKNOWN 0       /* Unknown state */
   1073 #define BTA_DM_CONTRL_ACTIVE  1       /* ACL link on, SCO link ongoing, sniff mode */
   1074 #define BTA_DM_CONTRL_SCAN    2       /* Scan state - paging/inquiry/trying to connect*/
   1075 #define BTA_DM_CONTRL_IDLE    3       /* Idle state - page scan, LE advt, inquiry scan */
   1076 
   1077 typedef UINT8 tBTA_DM_CONTRL_STATE;
   1078 
   1079 typedef UINT8 tBTA_DM_BLE_ADV_STATE;
   1080 typedef UINT8 tBTA_DM_BLE_ADV_INFO_PRESENT;
   1081 typedef UINT8 tBTA_DM_BLE_RSSI_VALUE;
   1082 typedef UINT16 tBTA_DM_BLE_ADV_INFO_TIMESTAMP;
   1083 
   1084 typedef tBTM_BLE_TRACK_ADV_DATA tBTA_DM_BLE_TRACK_ADV_DATA;
   1085 
   1086 typedef void (tBTA_BLE_SCAN_THRESHOLD_CBACK)(tBTA_DM_BLE_REF_VALUE ref_value);
   1087 
   1088 typedef void (tBTA_BLE_SCAN_REP_CBACK) (tBTA_DM_BLE_REF_VALUE ref_value, UINT8 report_format,
   1089                                         UINT8 num_records, UINT16 data_len,
   1090                                         UINT8* p_rep_data, tBTA_STATUS status);
   1091 
   1092 typedef void (tBTA_BLE_SCAN_SETUP_CBACK) (tBTA_BLE_BATCH_SCAN_EVT evt,
   1093                                           tBTA_DM_BLE_REF_VALUE ref_value,
   1094                                           tBTA_STATUS status);
   1095 
   1096 typedef void (tBTA_BLE_TRACK_ADV_CMPL_CBACK)(int action, tBTA_STATUS status,
   1097                                              tBTA_DM_BLE_PF_AVBL_SPACE avbl_space,
   1098                                              tBTA_DM_BLE_REF_VALUE ref_value);
   1099 
   1100 typedef void (tBTA_BLE_TRACK_ADV_CBACK)(tBTA_DM_BLE_TRACK_ADV_DATA *p_adv_data);
   1101 
   1102 typedef void (tBTA_BLE_ENERGY_INFO_CBACK)(tBTA_DM_BLE_TX_TIME_MS tx_time,
   1103                                           tBTA_DM_BLE_RX_TIME_MS rx_time,
   1104                                           tBTA_DM_BLE_IDLE_TIME_MS idle_time,
   1105                                           tBTA_DM_BLE_ENERGY_USED  energy_used,
   1106                                           tBTA_DM_CONTRL_STATE ctrl_state,
   1107                                           tBTA_STATUS status);
   1108 
   1109 #else
   1110 typedef UINT8                       tBTA_DM_BLE_SEC_ACT;
   1111 #endif
   1112 
   1113 /* Maximum service name length */
   1114 #define BTA_SERVICE_NAME_LEN    35
   1115 #define BTA_SERVICE_DESP_LEN    BTA_SERVICE_NAME_LEN
   1116 #define BTA_PROVIDER_NAME_LEN   BTA_SERVICE_NAME_LEN
   1117 
   1118 
   1119 /* link policy masks  */
   1120 #define BTA_DM_LP_SWITCH        HCI_ENABLE_MASTER_SLAVE_SWITCH
   1121 #define BTA_DM_LP_HOLD          HCI_ENABLE_HOLD_MODE
   1122 #define BTA_DM_LP_SNIFF         HCI_ENABLE_SNIFF_MODE
   1123 #define BTA_DM_LP_PARK          HCI_ENABLE_PARK_MODE
   1124 typedef UINT16 tBTA_DM_LP_MASK;
   1125 
   1126 /* power mode actions  */
   1127 #define BTA_DM_PM_NO_ACTION    0x00       /* no change to the current pm setting */
   1128 #define BTA_DM_PM_PARK         0x10       /* prefers park mode */
   1129 #define BTA_DM_PM_SNIFF        0x20       /* prefers sniff mode */
   1130 #define BTA_DM_PM_SNIFF1       0x21       /* prefers sniff1 mode */
   1131 #define BTA_DM_PM_SNIFF2       0x22       /* prefers sniff2 mode */
   1132 #define BTA_DM_PM_SNIFF3       0x23       /* prefers sniff3 mode */
   1133 #define BTA_DM_PM_SNIFF4       0x24       /* prefers sniff4 mode */
   1134 #define BTA_DM_PM_SNIFF5       0x25       /* prefers sniff5 mode */
   1135 #define BTA_DM_PM_SNIFF6       0x26       /* prefers sniff6 mode */
   1136 #define BTA_DM_PM_SNIFF7       0x27       /* prefers sniff7 mode */
   1137 #define BTA_DM_PM_SNIFF_USER0  0x28       /* prefers user-defined sniff0 mode (testtool only) */
   1138 #define BTA_DM_PM_SNIFF_USER1  0x29       /* prefers user-defined sniff1 mode (testtool only) */
   1139 #define BTA_DM_PM_ACTIVE       0x40       /* prefers active mode */
   1140 #define BTA_DM_PM_RETRY        0x80       /* retry power mode based on current settings */
   1141 #define BTA_DM_PM_SUSPEND      0x04       /* prefers suspend mode */
   1142 #define BTA_DM_PM_NO_PREF      0x01       /* service has no prefernce on power mode setting. eg. connection to service got closed */
   1143 
   1144 typedef UINT8 tBTA_DM_PM_ACTION;
   1145 
   1146 /* index to bta_dm_ssr_spec */
   1147 #define BTA_DM_PM_SSR0          0
   1148 #define BTA_DM_PM_SSR1          1       /* BTA_DM_PM_SSR1 will be dedicated for
   1149                                         HH SSR setting entry, no other profile can use it */
   1150 #define BTA_DM_PM_SSR2          2
   1151 #define BTA_DM_PM_SSR3          3
   1152 #define BTA_DM_PM_SSR4          4
   1153 #define BTA_DM_PM_SSR5          5
   1154 #define BTA_DM_PM_SSR6          6
   1155 
   1156 #define BTA_DM_PM_NUM_EVTS      9
   1157 
   1158 #ifndef BTA_DM_PM_PARK_IDX
   1159 #define BTA_DM_PM_PARK_IDX      5 /* the actual index to bta_dm_pm_md[] for PARK mode */
   1160 #endif
   1161 
   1162 #ifndef BTA_DM_PM_SNIFF_A2DP_IDX
   1163 #define BTA_DM_PM_SNIFF_A2DP_IDX      BTA_DM_PM_SNIFF
   1164 #endif
   1165 
   1166 #ifndef BTA_DM_PM_SNIFF_HD_IDLE_IDX
   1167 #define BTA_DM_PM_SNIFF_HD_IDLE_IDX   BTA_DM_PM_SNIFF2
   1168 #endif
   1169 
   1170 #ifndef BTA_DM_PM_SNIFF_SCO_OPEN_IDX
   1171 #define BTA_DM_PM_SNIFF_SCO_OPEN_IDX  BTA_DM_PM_SNIFF3
   1172 #endif
   1173 
   1174 #ifndef BTA_DM_PM_SNIFF_HD_ACTIVE_IDX
   1175 #define BTA_DM_PM_SNIFF_HD_ACTIVE_IDX BTA_DM_PM_SNIFF4
   1176 #endif
   1177 
   1178 #ifndef BTA_DM_PM_SNIFF_HH_OPEN_IDX
   1179 #define BTA_DM_PM_SNIFF_HH_OPEN_IDX BTA_DM_PM_SNIFF2
   1180 #endif
   1181 
   1182 #ifndef BTA_DM_PM_SNIFF_HH_ACTIVE_IDX
   1183 #define BTA_DM_PM_SNIFF_HH_ACTIVE_IDX BTA_DM_PM_SNIFF2
   1184 #endif
   1185 
   1186 #ifndef BTA_DM_PM_SNIFF_HH_IDLE_IDX
   1187 #define BTA_DM_PM_SNIFF_HH_IDLE_IDX BTA_DM_PM_SNIFF2
   1188 #endif
   1189 
   1190 
   1191 #ifndef BTA_DM_PM_HH_OPEN_DELAY
   1192 #define BTA_DM_PM_HH_OPEN_DELAY 30000
   1193 #endif
   1194 
   1195 #ifndef BTA_DM_PM_HH_ACTIVE_DELAY
   1196 #define BTA_DM_PM_HH_ACTIVE_DELAY 30000
   1197 #endif
   1198 
   1199 #ifndef BTA_DM_PM_HH_IDLE_DELAY
   1200 #define BTA_DM_PM_HH_IDLE_DELAY 30000
   1201 #endif
   1202 
   1203 /* The Sniff Parameters defined below must be ordered from highest
   1204  * latency (biggest interval) to lowest latency.  If there is a conflict
   1205  * among the connected services the setting with the lowest latency will
   1206  * be selected.  If a device should override a sniff parameter then it
   1207  * must insure that order is maintained.
   1208  */
   1209 #ifndef BTA_DM_PM_SNIFF_MAX
   1210 #define BTA_DM_PM_SNIFF_MAX      800
   1211 #define BTA_DM_PM_SNIFF_MIN      400
   1212 #define BTA_DM_PM_SNIFF_ATTEMPT  4
   1213 #define BTA_DM_PM_SNIFF_TIMEOUT  1
   1214 #endif
   1215 
   1216 #ifndef BTA_DM_PM_SNIFF1_MAX
   1217 #define BTA_DM_PM_SNIFF1_MAX     400
   1218 #define BTA_DM_PM_SNIFF1_MIN     200
   1219 #define BTA_DM_PM_SNIFF1_ATTEMPT 4
   1220 #define BTA_DM_PM_SNIFF1_TIMEOUT 1
   1221 #endif
   1222 
   1223 #ifndef BTA_DM_PM_SNIFF2_MAX
   1224 #define BTA_DM_PM_SNIFF2_MAX     180
   1225 #define BTA_DM_PM_SNIFF2_MIN     150
   1226 #define BTA_DM_PM_SNIFF2_ATTEMPT 4
   1227 #define BTA_DM_PM_SNIFF2_TIMEOUT 1
   1228 #endif
   1229 
   1230 #ifndef BTA_DM_PM_SNIFF3_MAX
   1231 #define BTA_DM_PM_SNIFF3_MAX     150
   1232 #define BTA_DM_PM_SNIFF3_MIN     50
   1233 #define BTA_DM_PM_SNIFF3_ATTEMPT 4
   1234 #define BTA_DM_PM_SNIFF3_TIMEOUT 1
   1235 #endif
   1236 
   1237 #ifndef BTA_DM_PM_SNIFF4_MAX
   1238 #define BTA_DM_PM_SNIFF4_MAX     54
   1239 #define BTA_DM_PM_SNIFF4_MIN     30
   1240 #define BTA_DM_PM_SNIFF4_ATTEMPT 4
   1241 #define BTA_DM_PM_SNIFF4_TIMEOUT 1
   1242 #endif
   1243 
   1244 #ifndef BTA_DM_PM_SNIFF5_MAX
   1245 #define BTA_DM_PM_SNIFF5_MAX     36
   1246 #define BTA_DM_PM_SNIFF5_MIN     30
   1247 #define BTA_DM_PM_SNIFF5_ATTEMPT 2
   1248 #define BTA_DM_PM_SNIFF5_TIMEOUT 0
   1249 #endif
   1250 
   1251 #ifndef BTA_DM_PM_PARK_MAX
   1252 #define BTA_DM_PM_PARK_MAX       800
   1253 #define BTA_DM_PM_PARK_MIN       400
   1254 #define BTA_DM_PM_PARK_ATTEMPT   0
   1255 #define BTA_DM_PM_PARK_TIMEOUT   0
   1256 #endif
   1257 
   1258 
   1259 /* Switch callback events */
   1260 #define BTA_DM_SWITCH_CMPL_EVT      0       /* Completion of the Switch API */
   1261 
   1262 typedef UINT8 tBTA_DM_SWITCH_EVT;
   1263 typedef void (tBTA_DM_SWITCH_CBACK)(tBTA_DM_SWITCH_EVT event, tBTA_STATUS status);
   1264 
   1265 /* Audio routing out configuration */
   1266 #define BTA_DM_ROUTE_NONE       0x00    /* No Audio output */
   1267 #define BTA_DM_ROUTE_DAC        0x01    /* routing over analog output */
   1268 #define BTA_DM_ROUTE_I2S        0x02    /* routing over digital (I2S) output */
   1269 #define BTA_DM_ROUTE_BT_MONO    0x04    /* routing over SCO */
   1270 #define BTA_DM_ROUTE_BT_STEREO  0x08    /* routing over BT Stereo */
   1271 #define BTA_DM_ROUTE_HOST       0x10    /* routing over Host */
   1272 #define BTA_DM_ROUTE_FMTX       0x20    /* routing over FMTX */
   1273 #define BTA_DM_ROUTE_FMRX       0x40    /* routing over FMRX */
   1274 #define BTA_DM_ROUTE_BTSNK      0x80    /* routing over BT SNK */
   1275 
   1276 typedef UINT8 tBTA_DM_ROUTE_PATH;
   1277 
   1278 
   1279 /* Device Identification (DI) data structure
   1280 */
   1281 /* Used to set the DI record */
   1282 typedef tSDP_DI_RECORD          tBTA_DI_RECORD;
   1283 /* Used to get the DI record */
   1284 typedef tSDP_DI_GET_RECORD      tBTA_DI_GET_RECORD;
   1285 /* SDP discovery database */
   1286 typedef tSDP_DISCOVERY_DB       tBTA_DISCOVERY_DB;
   1287 
   1288 #ifndef         BTA_DI_NUM_MAX
   1289 #define         BTA_DI_NUM_MAX       3
   1290 #endif
   1291 
   1292 /* Device features mask definitions */
   1293 #define BTA_FEATURE_BYTES_PER_PAGE  BTM_FEATURE_BYTES_PER_PAGE
   1294 #define BTA_EXT_FEATURES_PAGE_MAX   BTM_EXT_FEATURES_PAGE_MAX
   1295 /* ACL type
   1296 */
   1297 #define BTA_DM_LINK_TYPE_BR_EDR    0x01
   1298 #define BTA_DM_LINK_TYPE_LE        0x02
   1299 #define BTA_DM_LINK_TYPE_ALL       0xFF
   1300 typedef UINT8 tBTA_DM_LINK_TYPE;
   1301 
   1302 #define IMMEDIATE_DELY_MODE  0x00
   1303 #define ONFOUND_DELY_MODE    0x01
   1304 #define BATCH_DELY_MODE      0x02
   1305 #define ALLOW_ALL_FILTER     0x00
   1306 #define LOWEST_RSSI_VALUE     129
   1307 
   1308 /*****************************************************************************
   1309 **  External Function Declarations
   1310 *****************************************************************************/
   1311 #ifdef __cplusplus
   1312 extern "C"
   1313 {
   1314 #endif
   1315 
   1316 /*******************************************************************************
   1317 **
   1318 ** Function         BTA_EnableBluetooth
   1319 **
   1320 ** Description      This function initializes BTA and prepares BTA and the
   1321 **                  Bluetooth protocol stack for use.  This function is
   1322 **                  typically called at startup or when Bluetooth services
   1323 **                  are required by the phone.  This function must be called
   1324 **                  before calling any other API function.
   1325 **
   1326 **
   1327 ** Returns          BTA_SUCCESS if successful.
   1328 **                  BTA_FAIL if internal failure.
   1329 **
   1330 *******************************************************************************/
   1331 extern tBTA_STATUS BTA_EnableBluetooth(tBTA_DM_SEC_CBACK *p_cback);
   1332 
   1333 /*******************************************************************************
   1334 **
   1335 ** Function         BTA_DisableBluetooth
   1336 **
   1337 ** Description      This function disables BTA and the Bluetooth protocol
   1338 **                  stack.  It is called when BTA is no longer being used
   1339 **                  by any application in the system.
   1340 **
   1341 **
   1342 ** Returns          void
   1343 **
   1344 *******************************************************************************/
   1345 extern tBTA_STATUS BTA_DisableBluetooth(void);
   1346 
   1347 /*******************************************************************************
   1348 **
   1349 ** Function         BTA_EnableTestMode
   1350 **
   1351 ** Description      Enables bluetooth device under test mode
   1352 **
   1353 **
   1354 ** Returns          tBTA_STATUS
   1355 **
   1356 *******************************************************************************/
   1357 extern tBTA_STATUS BTA_EnableTestMode(void);
   1358 
   1359 /*******************************************************************************
   1360 **
   1361 ** Function         BTA_DisableTestMode
   1362 **
   1363 ** Description      Disable bluetooth device under test mode
   1364 **
   1365 **
   1366 ** Returns          None
   1367 **
   1368 *******************************************************************************/
   1369 extern void BTA_DisableTestMode(void);
   1370 
   1371 /*******************************************************************************
   1372 **
   1373 ** Function         BTA_DmSetDeviceName
   1374 **
   1375 ** Description      This function sets the Bluetooth name of the local device.
   1376 **
   1377 **
   1378 ** Returns          void
   1379 **
   1380 *******************************************************************************/
   1381 extern void BTA_DmSetDeviceName(char *p_name);
   1382 
   1383 /*******************************************************************************
   1384 **
   1385 ** Function         BTA_DmSetVisibility
   1386 **
   1387 ** Description      This function sets the Bluetooth connectable,discoverable,
   1388 **                  pairable and conn paired only modesmodes of the local device.
   1389 **                  This controls whether other Bluetooth devices can find and connect to
   1390 **                  the local device.
   1391 **
   1392 **
   1393 ** Returns          void
   1394 **
   1395 *******************************************************************************/
   1396 extern void BTA_DmSetVisibility(tBTA_DM_DISC disc_mode, tBTA_DM_CONN conn_mode, UINT8 pairable_mode, UINT8 conn_filter);
   1397 
   1398 /*******************************************************************************
   1399 **
   1400 ** Function         BTA_DmSearch
   1401 **
   1402 ** Description      This function searches for peer Bluetooth devices.  It
   1403 **                  first performs an inquiry; for each device found from the
   1404 **                  inquiry it gets the remote name of the device.  If
   1405 **                  parameter services is nonzero, service discovery will be
   1406 **                  performed on each device for the services specified.
   1407 **
   1408 **
   1409 ** Returns          void
   1410 **
   1411 *******************************************************************************/
   1412 extern void BTA_DmSearch(tBTA_DM_INQ *p_dm_inq, tBTA_SERVICE_MASK services,
   1413                          tBTA_DM_SEARCH_CBACK *p_cback);
   1414 
   1415 /*******************************************************************************
   1416 **
   1417 ** Function         BTA_DmSearchCancel
   1418 **
   1419 ** Description      This function cancels a search that has been initiated
   1420 **                  by calling BTA_DmSearch().
   1421 **
   1422 **
   1423 ** Returns          void
   1424 **
   1425 *******************************************************************************/
   1426 extern void BTA_DmSearchCancel(void);
   1427 
   1428 /*******************************************************************************
   1429 **
   1430 ** Function         BTA_DmDiscover
   1431 **
   1432 ** Description      This function performs service discovery for the services
   1433 **                  of a particular peer device.
   1434 **
   1435 **
   1436 ** Returns          void
   1437 **
   1438 *******************************************************************************/
   1439 extern void BTA_DmDiscover(BD_ADDR bd_addr, tBTA_SERVICE_MASK services,
   1440                            tBTA_DM_SEARCH_CBACK *p_cback, BOOLEAN sdp_search);
   1441 
   1442 /*******************************************************************************
   1443 **
   1444 ** Function         BTA_DmDiscoverUUID
   1445 **
   1446 ** Description      This function performs service discovery for the services
   1447 **                  of a particular peer device.
   1448 **
   1449 **
   1450 ** Returns          void
   1451 **
   1452 *******************************************************************************/
   1453 extern void BTA_DmDiscoverUUID(BD_ADDR bd_addr, tSDP_UUID *uuid,
   1454                                tBTA_DM_SEARCH_CBACK *p_cback, BOOLEAN sdp_search);
   1455 
   1456 /*******************************************************************************
   1457 **
   1458 ** Function         BTA_DmGetCachedRemoteName
   1459 **
   1460 ** Description      Retieve cached remote name if available
   1461 **
   1462 ** Returns          BTA_SUCCESS if cached name was retrieved
   1463 **                  BTA_FAILURE if cached name is not available
   1464 **
   1465 *******************************************************************************/
   1466 tBTA_STATUS BTA_DmGetCachedRemoteName(BD_ADDR remote_device, UINT8 **pp_cached_name);
   1467 
   1468 /*******************************************************************************
   1469 **
   1470 ** Function         BTA_DmBond
   1471 **
   1472 ** Description      This function initiates a bonding procedure with a peer
   1473 **                  device.  The bonding procedure enables authentication
   1474 **                  and optionally encryption on the Bluetooth link.
   1475 **
   1476 **
   1477 ** Returns          void
   1478 **
   1479 *******************************************************************************/
   1480 extern void BTA_DmBond(BD_ADDR bd_addr);
   1481 
   1482 /*******************************************************************************
   1483 **
   1484 ** Function         BTA_DmBondByTransport
   1485 **
   1486 ** Description      This function initiates a bonding procedure with a peer
   1487 **                  device by designated transport.  The bonding procedure enables
   1488 **                  authentication and optionally encryption on the Bluetooth link.
   1489 **
   1490 **
   1491 ** Returns          void
   1492 **
   1493 *******************************************************************************/
   1494 extern void BTA_DmBondByTransport(BD_ADDR bd_addr, tBTA_TRANSPORT transport);
   1495 
   1496 
   1497 /*******************************************************************************
   1498 **
   1499 ** Function         BTA_DmBondCancel
   1500 **
   1501 ** Description      This function cancels a bonding procedure with a peer
   1502 **                  device.
   1503 **
   1504 **
   1505 ** Returns          void
   1506 **
   1507 *******************************************************************************/
   1508 extern void BTA_DmBondCancel(BD_ADDR bd_addr);
   1509 
   1510 /*******************************************************************************
   1511 **
   1512 ** Function         BTA_DmPinReply
   1513 **
   1514 ** Description      This function provides a PIN when one is requested by DM
   1515 **                  during a bonding procedure.  The application should call
   1516 **                  this function after the security callback is called with
   1517 **                  a BTA_DM_PIN_REQ_EVT.
   1518 **
   1519 **
   1520 ** Returns          void
   1521 **
   1522 *******************************************************************************/
   1523 extern void BTA_DmPinReply(BD_ADDR bd_addr, BOOLEAN accept, UINT8 pin_len,
   1524                            UINT8 *p_pin);
   1525 
   1526 /*******************************************************************************
   1527 **
   1528 ** Function         BTA_DmLocalOob
   1529 **
   1530 ** Description      This function retrieves the OOB data from local controller.
   1531 **                  The result is reported by bta_dm_co_loc_oob().
   1532 **
   1533 ** Returns          void
   1534 **
   1535 *******************************************************************************/
   1536 extern void BTA_DmLocalOob(void);
   1537 
   1538 /*******************************************************************************
   1539 **
   1540 ** Function         BTA_DmConfirm
   1541 **
   1542 ** Description      This function accepts or rejects the numerical value of the
   1543 **                  Simple Pairing process on BTA_DM_SP_CFM_REQ_EVT
   1544 **
   1545 ** Returns          void
   1546 **
   1547 *******************************************************************************/
   1548 extern void BTA_DmConfirm(BD_ADDR bd_addr, BOOLEAN accept);
   1549 
   1550 /*******************************************************************************
   1551 **
   1552 ** Function         BTA_DmAddDevice
   1553 **
   1554 ** Description      This function adds a device to the security database list
   1555 **                  of peer devices. This function would typically be called
   1556 **                  at system startup to initialize the security database with
   1557 **                  known peer devices.  This is a direct execution function
   1558 **                  that may lock task scheduling on some platforms.
   1559 **
   1560 ** Returns          void
   1561 **
   1562 *******************************************************************************/
   1563 extern void BTA_DmAddDevice(BD_ADDR bd_addr, DEV_CLASS dev_class,
   1564                             LINK_KEY link_key, tBTA_SERVICE_MASK trusted_mask,
   1565                             BOOLEAN is_trusted, UINT8 key_type,
   1566                             tBTA_IO_CAP io_cap, UINT8 pin_length);
   1567 
   1568 /*******************************************************************************
   1569 **
   1570 ** Function         BTA_DmRemoveDevice
   1571 **
   1572 ** Description      This function removes a device from the security database.
   1573 **                  This is a direct execution function that may lock task
   1574 **                  scheduling on some platforms.
   1575 **
   1576 **
   1577 ** Returns          BTA_SUCCESS if successful.
   1578 **                  BTA_FAIL if operation failed.
   1579 **
   1580 *******************************************************************************/
   1581 extern tBTA_STATUS BTA_DmRemoveDevice(BD_ADDR bd_addr);
   1582 
   1583 /*******************************************************************************
   1584 **
   1585 ** Function         BTA_GetEirService
   1586 **
   1587 ** Description      This function is called to get BTA service mask from EIR.
   1588 **
   1589 ** Parameters       p_eir - pointer of EIR significant part
   1590 **                  p_services - return the BTA service mask
   1591 **
   1592 ** Returns          None
   1593 **
   1594 *******************************************************************************/
   1595 extern void BTA_GetEirService( UINT8 *p_eir, tBTA_SERVICE_MASK *p_services );
   1596 
   1597 /*******************************************************************************
   1598 **
   1599 ** Function         BTA_DmGetConnectionState
   1600 **
   1601 ** Description      Returns whether the remote device is currently connected.
   1602 **
   1603 ** Returns          0 if the device is NOT connected.
   1604 **
   1605 *******************************************************************************/
   1606 extern UINT16 BTA_DmGetConnectionState( BD_ADDR bd_addr );
   1607 
   1608 
   1609 /*******************************************************************************
   1610 **
   1611 ** Function         BTA_DmSetLocalDiRecord
   1612 **
   1613 ** Description      This function adds a DI record to the local SDP database.
   1614 **
   1615 ** Returns          BTA_SUCCESS if record set sucessfully, otherwise error code.
   1616 **
   1617 *******************************************************************************/
   1618 extern tBTA_STATUS BTA_DmSetLocalDiRecord( tBTA_DI_RECORD *p_device_info,
   1619                                            UINT32 *p_handle );
   1620 
   1621 /*******************************************************************************
   1622 **
   1623 **
   1624 ** Function         BTA_DmCloseACL
   1625 **
   1626 ** Description      This function force to close an ACL connection and remove the
   1627 **                  device from the security database list of known devices.
   1628 **
   1629 ** Parameters:      bd_addr       - Address of the peer device
   1630 **                  remove_dev    - remove device or not after link down
   1631 **                  transport     - which transport to close
   1632 
   1633 **
   1634 ** Returns          void.
   1635 **
   1636 *******************************************************************************/
   1637 extern void BTA_DmCloseACL(BD_ADDR bd_addr, BOOLEAN remove_dev, tBTA_TRANSPORT transport);
   1638 
   1639 /*******************************************************************************
   1640 **
   1641 ** Function         bta_dmexecutecallback
   1642 **
   1643 ** Description      This function will request BTA to execute a call back in the context of BTU task
   1644 **                  This API was named in lower case because it is only intended
   1645 **                  for the internal customers(like BTIF).
   1646 **
   1647 ** Returns          void
   1648 **
   1649 *******************************************************************************/
   1650 extern void bta_dmexecutecallback (tBTA_DM_EXEC_CBACK* p_callback, void * p_param);
   1651 
   1652 #if (BTM_SCO_HCI_INCLUDED == TRUE)
   1653 /*******************************************************************************
   1654 **
   1655 ** Function         BTA_DmPcmInitSamples
   1656 **
   1657 ** Description      initialize the down sample converter.
   1658 **
   1659 **                  src_sps: original samples per second (source audio data)
   1660 **                            (ex. 44100, 48000)
   1661 **                  bits: number of bits per pcm sample (16)
   1662 **                  n_channels: number of channels (i.e. mono(1), stereo(2)...)
   1663 **
   1664 ** Returns          none
   1665 **
   1666 *******************************************************************************/
   1667 extern void BTA_DmPcmInitSamples (UINT32 src_sps, UINT32 bits, UINT32 n_channels);
   1668 
   1669 /**************************************************************************************
   1670 ** Function         BTA_DmPcmResample
   1671 **
   1672 ** Description      Down sampling utility to convert higher sampling rate into 8K/16bits
   1673 **                  PCM samples.
   1674 **
   1675 ** Parameters       p_src: pointer to the buffer where the original sampling PCM
   1676 **                              are stored.
   1677 **                  in_bytes:  Length of the input PCM sample buffer in byte.
   1678 **                  p_dst:      pointer to the buffer which is to be used to store
   1679 **                              the converted PCM samples.
   1680 **
   1681 **
   1682 ** Returns          INT32: number of samples converted.
   1683 **
   1684 **************************************************************************************/
   1685 extern INT32 BTA_DmPcmResample (void *p_src, UINT32 in_bytes, void *p_dst);
   1686 #endif
   1687 
   1688 #if ((defined BLE_INCLUDED) && (BLE_INCLUDED == TRUE))
   1689 /* BLE related API functions */
   1690 /*******************************************************************************
   1691 **
   1692 ** Function         BTA_DmBleSecurityGrant
   1693 **
   1694 ** Description      Grant security request access.
   1695 **
   1696 ** Parameters:      bd_addr          - BD address of the peer
   1697 **                  res              - security grant status.
   1698 **
   1699 ** Returns          void
   1700 **
   1701 *******************************************************************************/
   1702 extern void BTA_DmBleSecurityGrant(BD_ADDR bd_addr, tBTA_DM_BLE_SEC_GRANT res);
   1703 
   1704 
   1705 
   1706 /*******************************************************************************
   1707 **
   1708 ** Function         BTA_DmBleSetBgConnType
   1709 **
   1710 ** Description      This function is called to set BLE connectable mode for a
   1711 **                  peripheral device.
   1712 **
   1713 ** Parameters       bg_conn_type: it can be auto connection, or selective connection.
   1714 **                  p_select_cback: callback function when selective connection procedure
   1715 **                              is being used.
   1716 **
   1717 ** Returns          void
   1718 **
   1719 *******************************************************************************/
   1720 extern void BTA_DmBleSetBgConnType(tBTA_DM_BLE_CONN_TYPE bg_conn_type, tBTA_DM_BLE_SEL_CBACK *p_select_cback);
   1721 
   1722 /*******************************************************************************
   1723 **
   1724 ** Function         BTA_DmBlePasskeyReply
   1725 **
   1726 ** Description      Send BLE SMP passkey reply.
   1727 **
   1728 ** Parameters:      bd_addr          - BD address of the peer
   1729 **                  accept           - passkey entry sucessful or declined.
   1730 **                  passkey          - passkey value, must be a 6 digit number,
   1731 **                                     can be lead by 0.
   1732 **
   1733 ** Returns          void
   1734 **
   1735 *******************************************************************************/
   1736 extern void BTA_DmBlePasskeyReply(BD_ADDR bd_addr, BOOLEAN accept, UINT32 passkey);
   1737 
   1738 /*******************************************************************************
   1739 **
   1740 ** Function         BTA_DmBleConfirmReply
   1741 **
   1742 ** Description      Send BLE SMP SC user confirmation reply.
   1743 **
   1744 ** Parameters:      bd_addr          - BD address of the peer
   1745 **                  accept           - numbers to compare are the same or different.
   1746 **
   1747 ** Returns          void
   1748 **
   1749 *******************************************************************************/
   1750 extern void BTA_DmBleConfirmReply(BD_ADDR bd_addr, BOOLEAN accept);
   1751 
   1752 /*******************************************************************************
   1753 **
   1754 ** Function         BTA_DmAddBleDevice
   1755 **
   1756 ** Description      Add a BLE device.  This function will be normally called
   1757 **                  during host startup to restore all required information
   1758 **                  for a LE device stored in the NVRAM.
   1759 **
   1760 ** Parameters:      bd_addr          - BD address of the peer
   1761 **                  dev_type         - Remote device's device type.
   1762 **                  addr_type        - LE device address type.
   1763 **
   1764 ** Returns          void
   1765 **
   1766 *******************************************************************************/
   1767 extern void BTA_DmAddBleDevice(BD_ADDR bd_addr, tBLE_ADDR_TYPE addr_type,
   1768                                tBT_DEVICE_TYPE dev_type);
   1769 
   1770 
   1771 /*******************************************************************************
   1772 **
   1773 ** Function         BTA_DmAddBleKey
   1774 **
   1775 ** Description      Add/modify LE device information.  This function will be
   1776 **                  normally called during host startup to restore all required
   1777 **                  information stored in the NVRAM.
   1778 **
   1779 ** Parameters:      bd_addr          - BD address of the peer
   1780 **                  p_le_key         - LE key values.
   1781 **                  key_type         - LE SMP key type.
   1782 **
   1783 ** Returns          void
   1784 **
   1785 *******************************************************************************/
   1786 extern void BTA_DmAddBleKey (BD_ADDR bd_addr,
   1787                              tBTA_LE_KEY_VALUE *p_le_key,
   1788                              tBTA_LE_KEY_TYPE key_type);
   1789 
   1790 /*******************************************************************************
   1791 **
   1792 ** Function         BTA_DmSetBlePrefConnParams
   1793 **
   1794 ** Description      This function is called to set the preferred connection
   1795 **                  parameters when default connection parameter is not desired.
   1796 **
   1797 ** Parameters:      bd_addr          - BD address of the peripheral
   1798 **                  min_conn_int     - minimum preferred connection interval
   1799 **                  max_conn_int     - maximum preferred connection interval
   1800 **                  slave_latency    - preferred slave latency
   1801 **                  supervision_tout - preferred supervision timeout
   1802 **
   1803 **
   1804 ** Returns          void
   1805 **
   1806 *******************************************************************************/
   1807 extern void BTA_DmSetBlePrefConnParams(BD_ADDR bd_addr,
   1808                                        UINT16 min_conn_int, UINT16 max_conn_int,
   1809                                        UINT16 slave_latency, UINT16 supervision_tout );
   1810 
   1811 /*******************************************************************************
   1812 **
   1813 ** Function         BTA_DmSetBleConnScanParams
   1814 **
   1815 ** Description      This function is called to set scan parameters used in
   1816 **                  BLE connection request
   1817 **
   1818 ** Parameters:      scan_interval    - scan interval
   1819 **                  scan_window      - scan window
   1820 **
   1821 ** Returns          void
   1822 **
   1823 *******************************************************************************/
   1824 extern void BTA_DmSetBleConnScanParams(UINT32 scan_interval,
   1825                                        UINT32 scan_window);
   1826 
   1827 /*******************************************************************************
   1828 **
   1829 ** Function         BTA_DmSetBleScanParams
   1830 **
   1831 ** Description      This function is called to set scan parameters
   1832 **
   1833 ** Parameters:      client_if - Client IF
   1834 **                  scan_interval - scan interval
   1835 **                  scan_window - scan window
   1836 **                  scan_mode - scan mode
   1837 **                  scan_param_setup_status_cback - Set scan param status callback
   1838 **
   1839 ** Returns          void
   1840 **
   1841 *******************************************************************************/
   1842 extern void BTA_DmSetBleScanParams(tGATT_IF client_if, UINT32 scan_interval,
   1843                                    UINT32 scan_window, tBLE_SCAN_MODE scan_mode,
   1844                                    tBLE_SCAN_PARAM_SETUP_CBACK scan_param_setup_status_cback);
   1845 
   1846 /*******************************************************************************
   1847 **
   1848 ** Function         BTA_DmSetBleAdvParams
   1849 **
   1850 ** Description      This function sets the advertising parameters BLE functionality.
   1851 **                  It is to be called when device act in peripheral or broadcaster
   1852 **                  role.
   1853 **
   1854 ** Parameters:      adv_int_min    - adv interval minimum
   1855 **                  adv_int_max    - adv interval max
   1856 **                  p_dir_bda      - directed adv initator address
   1857 **
   1858 ** Returns          void
   1859 **
   1860 *******************************************************************************/
   1861 extern void BTA_DmSetBleAdvParams (UINT16 adv_int_min, UINT16 adv_int_max,
   1862                                    tBLE_BD_ADDR *p_dir_bda);
   1863 /*******************************************************************************
   1864 **
   1865 ** Function         BTA_DmSearchExt
   1866 **
   1867 ** Description      This function searches for peer Bluetooth devices. It performs
   1868 **                  an inquiry and gets the remote name for devices. Service
   1869 **                  discovery is done if services is non zero
   1870 **
   1871 ** Parameters       p_dm_inq: inquiry conditions
   1872 **                  services: if service is not empty, service discovery will be done.
   1873 **                            for all GATT based service condition, put num_uuid, and
   1874 **                            p_uuid is the pointer to the list of UUID values.
   1875 **                  p_cback: callback functino when search is completed.
   1876 **
   1877 **
   1878 **
   1879 ** Returns          void
   1880 **
   1881 *******************************************************************************/
   1882 extern void BTA_DmSearchExt(tBTA_DM_INQ *p_dm_inq, tBTA_SERVICE_MASK_EXT *p_services,
   1883                             tBTA_DM_SEARCH_CBACK *p_cback);
   1884 
   1885 /*******************************************************************************
   1886 **
   1887 ** Function         BTA_DmDiscoverExt
   1888 **
   1889 ** Description      This function does service discovery for services of a
   1890 **                  peer device. When services.num_uuid is 0, it indicates all
   1891 **                  GATT based services are to be searched; other wise a list of
   1892 **                  UUID of interested services should be provided through
   1893 **                  services.p_uuid.
   1894 **
   1895 **
   1896 **
   1897 ** Returns          void
   1898 **
   1899 *******************************************************************************/
   1900 extern void BTA_DmDiscoverExt(BD_ADDR bd_addr, tBTA_SERVICE_MASK_EXT *p_services,
   1901                               tBTA_DM_SEARCH_CBACK *p_cback, BOOLEAN sdp_search);
   1902 
   1903 /*******************************************************************************
   1904 **
   1905 ** Function         BTA_DmDiscoverByTransport
   1906 **
   1907 ** Description      This function does service discovery on particular transport
   1908 **                  for services of a
   1909 **                  peer device. When services.num_uuid is 0, it indicates all
   1910 **                  GATT based services are to be searched; other wise a list of
   1911 **                  UUID of interested services should be provided through
   1912 **                  p_services->p_uuid.
   1913 **
   1914 **
   1915 **
   1916 ** Returns          void
   1917 **
   1918 *******************************************************************************/
   1919 extern void BTA_DmDiscoverByTransport(BD_ADDR bd_addr, tBTA_SERVICE_MASK_EXT *p_services,
   1920                                       tBTA_DM_SEARCH_CBACK *p_cback, BOOLEAN sdp_search,
   1921                                       tBTA_TRANSPORT transport);
   1922 
   1923 /*******************************************************************************
   1924 **
   1925 ** Function         BTA_DmSetEncryption
   1926 **
   1927 ** Description      This function is called to ensure that connection is
   1928 **                  encrypted.  Should be called only on an open connection.
   1929 **                  Typically only needed for connections that first want to
   1930 **                  bring up unencrypted links, then later encrypt them.
   1931 **
   1932 ** Parameters:      bd_addr       - Address of the peer device
   1933 **                  transport     - transport of the link to be encruypted
   1934 **                  p_callback    - Pointer to callback function to indicat the
   1935 **                                  link encryption status
   1936 **                  sec_act       - This is the security action to indicate
   1937 **                                  what knid of BLE security level is required for
   1938 **                                  the BLE link if the BLE is supported
   1939 **                                  Note: This parameter is ignored for the BR/EDR link
   1940 **                                        or the BLE is not supported
   1941 **
   1942 ** Returns          void
   1943 **
   1944 **
   1945 *******************************************************************************/
   1946 extern void BTA_DmSetEncryption(BD_ADDR bd_addr, tBTA_TRANSPORT transport,
   1947                                 tBTA_DM_ENCRYPT_CBACK *p_callback,
   1948                                 tBTA_DM_BLE_SEC_ACT sec_act);
   1949 
   1950 
   1951 /*******************************************************************************
   1952 **
   1953 ** Function         BTA_DmBleObserve
   1954 **
   1955 ** Description      This procedure keep the device listening for advertising
   1956 **                  events from a broadcast device.
   1957 **
   1958 ** Parameters       start: start or stop observe.
   1959 **                  duration : Duration of the scan. Continuous scan if 0 is passed
   1960 **                  p_results_cb: Callback to be called with scan results
   1961 **
   1962 ** Returns          void
   1963 **
   1964 *******************************************************************************/
   1965 extern void BTA_DmBleObserve(BOOLEAN start, UINT8 duration,
   1966                              tBTA_DM_SEARCH_CBACK *p_results_cb);
   1967 
   1968 
   1969 #endif
   1970 
   1971 #if BLE_INCLUDED == TRUE
   1972 /*******************************************************************************
   1973 **
   1974 ** Function         BTA_DmBleConfigLocalPrivacy
   1975 **
   1976 ** Description      Enable/disable privacy on the local device
   1977 **
   1978 ** Parameters:      privacy_enable   - enable/disabe privacy on remote device.
   1979 **
   1980 ** Returns          void
   1981 **
   1982 *******************************************************************************/
   1983 extern void BTA_DmBleConfigLocalPrivacy(BOOLEAN privacy_enable);
   1984 
   1985 /*******************************************************************************
   1986 **
   1987 ** Function         BTA_DmBleEnableRemotePrivacy
   1988 **
   1989 ** Description      Enable/disable privacy on a remote device
   1990 **
   1991 ** Parameters:      bd_addr          - BD address of the peer
   1992 **                  privacy_enable   - enable/disabe privacy on remote device.
   1993 **
   1994 ** Returns          void
   1995 **
   1996 *******************************************************************************/
   1997 extern void BTA_DmBleEnableRemotePrivacy(BD_ADDR bd_addr, BOOLEAN privacy_enable);
   1998 
   1999 
   2000 /*******************************************************************************
   2001 **
   2002 ** Function         BTA_DmBleSetAdvConfig
   2003 **
   2004 ** Description      This function is called to override the BTA default ADV parameters.
   2005 **
   2006 ** Parameters       Pointer to User defined ADV data structure
   2007 **
   2008 ** Returns          None
   2009 **
   2010 *******************************************************************************/
   2011 extern void BTA_DmBleSetAdvConfig (tBTA_BLE_AD_MASK data_mask,
   2012                                    tBTA_BLE_ADV_DATA *p_adv_cfg,
   2013                                    tBTA_SET_ADV_DATA_CMPL_CBACK *p_adv_data_cback);
   2014 
   2015 /*******************************************************************************
   2016 **
   2017 ** Function         BTA_DmBleSetScanRsp
   2018 **
   2019 ** Description      This function is called to override the BTA scan response.
   2020 **
   2021 ** Parameters       Pointer to User defined ADV data structure
   2022 **
   2023 ** Returns          None
   2024 **
   2025 *******************************************************************************/
   2026 extern void BTA_DmBleSetScanRsp (tBTA_BLE_AD_MASK data_mask,
   2027                                  tBTA_BLE_ADV_DATA *p_adv_cfg,
   2028                                  tBTA_SET_ADV_DATA_CMPL_CBACK *p_adv_data_cback);
   2029 
   2030 /*******************************************************************************
   2031 **
   2032 ** Function         BTA_DmBleBroadcast
   2033 **
   2034 ** Description      This function starts or stops LE broadcasting.
   2035 **
   2036 ** Parameters       start: start or stop broadcast.
   2037 **
   2038 ** Returns          None
   2039 **
   2040 *******************************************************************************/
   2041 extern void BTA_DmBleBroadcast (BOOLEAN start);
   2042 
   2043 
   2044 /*******************************************************************************
   2045 **
   2046 ** Function         BTA_BleEnableAdvInstance
   2047 **
   2048 ** Description      This function enables the Multi ADV instance feature
   2049 **
   2050 ** Parameters       p_params Pointer to ADV param user defined structure
   2051 **                  p_cback  Pointer to Multi ADV callback structure
   2052 **                  p_ref - Reference pointer
   2053 **
   2054 ** Returns          None
   2055 **
   2056 *******************************************************************************/
   2057 extern void BTA_BleEnableAdvInstance (tBTA_BLE_ADV_PARAMS *p_params,
   2058                                 tBTA_BLE_MULTI_ADV_CBACK *p_cback,void *p_ref);
   2059 
   2060 /*******************************************************************************
   2061 **
   2062 ** Function         BTA_BleUpdateAdvInstParam
   2063 **
   2064 ** Description      This function updates the Multi ADV instance params
   2065 **
   2066 ** Parameters       inst_id Instance ID
   2067 **                  p_params Pointer to ADV param user defined structure
   2068 **
   2069 ** Returns          None
   2070 **
   2071 *******************************************************************************/
   2072 extern void BTA_BleUpdateAdvInstParam (UINT8 inst_id,
   2073                                 tBTA_BLE_ADV_PARAMS *p_params);
   2074 
   2075 /*******************************************************************************
   2076 **
   2077 ** Function         BTA_BleCfgAdvInstData
   2078 **
   2079 ** Description      This function is called to configure the ADV instance data
   2080 **
   2081 ** Parameters       inst_id - Instance ID
   2082 **                  is_scan_rsp - Boolean value Scan response
   2083 **                  Pointer to User defined ADV data structure
   2084 ** Returns          None
   2085 **
   2086 *******************************************************************************/
   2087 extern void BTA_BleCfgAdvInstData (UINT8 inst_id, BOOLEAN is_scan_rsp,
   2088                                 tBTA_BLE_AD_MASK data_mask, tBTA_BLE_ADV_DATA *p_data);
   2089 
   2090 /*******************************************************************************
   2091 **
   2092 ** Function         BTA_BleDisableAdvInstance
   2093 **
   2094 ** Description      This function is called to disable the ADV instance
   2095 **
   2096 ** Parameters       inst_id - Instance ID to be disabled
   2097 **
   2098 ** Returns          None
   2099 **
   2100 *******************************************************************************/
   2101 extern void BTA_BleDisableAdvInstance(UINT8 inst_id);
   2102 
   2103 /*******************************************************************************
   2104 **
   2105 ** Function         BTA_DmBleUpdateConnectionParams
   2106 **
   2107 ** Description      Update connection parameters, can only be used when connection is up.
   2108 **
   2109 ** Parameters:      bd_addr   - BD address of the peer
   2110 **                  min_int   -     minimum connection interval, [0x0004~ 0x4000]
   2111 **                  max_int   -     maximum connection interval, [0x0004~ 0x4000]
   2112 **                  latency   -     slave latency [0 ~ 500]
   2113 **                  timeout   -     supervision timeout [0x000a ~ 0xc80]
   2114 **
   2115 ** Returns          void
   2116 **
   2117 *******************************************************************************/
   2118 extern void BTA_DmBleUpdateConnectionParams(BD_ADDR bd_addr, UINT16 min_int,
   2119                                    UINT16 max_int, UINT16 latency, UINT16 timeout);
   2120 
   2121 /*******************************************************************************
   2122 **
   2123 ** Function         BTA_DmBleSetDataLength
   2124 **
   2125 ** Description      This function is to set maximum LE data packet size
   2126 **
   2127 ** Returns          void
   2128 **
   2129 *******************************************************************************/
   2130 extern void BTA_DmBleSetDataLength(BD_ADDR remote_device, UINT16 tx_data_length);
   2131 
   2132 /*******************************************************************************
   2133 **
   2134 ** Function         BTA_DmBleSetStorageParams
   2135 **
   2136 ** Description      This function is called to set the storage parameters
   2137 **
   2138 ** Parameters       batch_scan_full_max -Max storage space (in %) allocated to full scanning
   2139 **                  batch_scan_trunc_max -Max storage space (in %) allocated to truncated scanning
   2140 **                  batch_scan_notify_threshold - Setup notification level based on total space
   2141 **                  consumed by both pools. Setting it to 0 will disable threshold notification
   2142 **                  p_setup_cback - Setup callback
   2143 **                  p_thres_cback - Threshold callback
   2144 **                  p_rep_cback - Reports callback
   2145 **                  ref_value - Reference value
   2146 **
   2147 ** Returns           None
   2148 **
   2149 *******************************************************************************/
   2150 extern void BTA_DmBleSetStorageParams(UINT8 batch_scan_full_max,
   2151                                          UINT8 batch_scan_trunc_max,
   2152                                          UINT8 batch_scan_notify_threshold,
   2153                                          tBTA_BLE_SCAN_SETUP_CBACK *p_setup_cback,
   2154                                          tBTA_BLE_SCAN_THRESHOLD_CBACK *p_thres_cback,
   2155                                          tBTA_BLE_SCAN_REP_CBACK* p_rep_cback,
   2156                                          tBTA_DM_BLE_REF_VALUE ref_value);
   2157 
   2158 /*******************************************************************************
   2159 **
   2160 ** Function         BTA_DmBleEnableBatchScan
   2161 **
   2162 ** Description      This function is called to enable the batch scan
   2163 **
   2164 ** Parameters       scan_mode -Batch scan mode
   2165 **                  scan_interval - Scan interval
   2166 **                  scan_window - Scan window
   2167 **                  discard_rule -Discard rules
   2168 **                  addr_type - Address type
   2169 **                  ref_value - Reference value
   2170 **
   2171 ** Returns           None
   2172 **
   2173 *******************************************************************************/
   2174 extern void BTA_DmBleEnableBatchScan(tBTA_BLE_BATCH_SCAN_MODE scan_mode,
   2175                                          UINT32 scan_interval, UINT32 scan_window,
   2176                                          tBTA_BLE_DISCARD_RULE discard_rule,
   2177                                          tBLE_ADDR_TYPE        addr_type,
   2178                                          tBTA_DM_BLE_REF_VALUE ref_value);
   2179 
   2180 /*******************************************************************************
   2181 **
   2182 ** Function         BTA_DmBleReadScanReports
   2183 **
   2184 ** Description      This function is called to read the batch scan reports
   2185 **
   2186 ** Parameters       scan_mode -Batch scan mode
   2187 **                  ref_value - Reference value
   2188 **
   2189 ** Returns          None
   2190 **
   2191 *******************************************************************************/
   2192 extern void BTA_DmBleReadScanReports(tBTA_BLE_BATCH_SCAN_MODE scan_type,
   2193                                              tBTA_DM_BLE_REF_VALUE ref_value);
   2194 
   2195 /*******************************************************************************
   2196 **
   2197 ** Function         BTA_DmBleDisableBatchScan
   2198 **
   2199 ** Description      This function is called to disable the batch scanning
   2200 **
   2201 ** Parameters       ref_value - Reference value
   2202 **
   2203 ** Returns          None
   2204 **
   2205 *******************************************************************************/
   2206 extern void BTA_DmBleDisableBatchScan(tBTA_DM_BLE_REF_VALUE ref_value);
   2207 
   2208 /*******************************************************************************
   2209 **
   2210 ** Function         BTA_DmEnableScanFilter
   2211 **
   2212 ** Description      This function is called to enable the adv data payload filter
   2213 **
   2214 ** Parameters       action - enable or disable the APCF feature
   2215 **                  p_cmpl_cback - Command completed callback
   2216 **                  ref_value - Reference value
   2217 **
   2218 ** Returns          void
   2219 **
   2220 *******************************************************************************/
   2221 extern void BTA_DmEnableScanFilter(UINT8 action,
   2222                                         tBTA_DM_BLE_PF_STATUS_CBACK *p_cmpl_cback,
   2223                                         tBTA_DM_BLE_REF_VALUE ref_value);
   2224 
   2225 /*******************************************************************************
   2226 **
   2227 ** Function         BTA_DmBleScanFilterSetup
   2228 **
   2229 ** Description      This function is called to setup the filter params
   2230 **
   2231 ** Parameters       p_target: enable the filter condition on a target device; if NULL
   2232 **                  filt_index - Filter index
   2233 **                  p_filt_params -Filter parameters
   2234 **                  ref_value - Reference value
   2235 **                  action - Add, delete or clear
   2236 **                  p_cmpl_back - Command completed callback
   2237 **
   2238 ** Returns          void
   2239 **
   2240 *******************************************************************************/
   2241 extern void BTA_DmBleScanFilterSetup(UINT8 action,
   2242                                                    tBTA_DM_BLE_PF_FILT_INDEX filt_index,
   2243                                                    tBTA_DM_BLE_PF_FILT_PARAMS *p_filt_params,
   2244                                                    tBLE_BD_ADDR *p_target,
   2245                                                    tBTA_DM_BLE_PF_PARAM_CBACK *p_cmpl_cback,
   2246                                                    tBTA_DM_BLE_REF_VALUE ref_value);
   2247 
   2248 /*******************************************************************************
   2249 **
   2250 ** Function         BTA_DmBleCfgFilterCondition
   2251 **
   2252 ** Description      This function is called to configure the adv data payload filter
   2253 **                  condition.
   2254 **
   2255 ** Parameters       action: to read/write/clear
   2256 **                  cond_type: filter condition type
   2257 **                  filt_index - Filter index
   2258 **                  p_cond: filter condition parameter
   2259 **                  p_cmpl_back - Command completed callback
   2260 **                  ref_value - Reference value
   2261 **
   2262 ** Returns          void
   2263 **
   2264 *******************************************************************************/
   2265 extern void BTA_DmBleCfgFilterCondition(tBTA_DM_BLE_SCAN_COND_OP action,
   2266                                                  tBTA_DM_BLE_PF_COND_TYPE cond_type,
   2267                                                  tBTA_DM_BLE_PF_FILT_INDEX filt_index,
   2268                                                  tBTA_DM_BLE_PF_COND_PARAM *p_cond,
   2269                                                  tBTA_DM_BLE_PF_CFG_CBACK *p_cmpl_cback,
   2270                                                  tBTA_DM_BLE_REF_VALUE ref_value);
   2271 
   2272 
   2273 /*******************************************************************************
   2274 **
   2275 ** Function         BTA_DmBleTrackAdvertiser
   2276 **
   2277 ** Description      This function is called to track the advertiser
   2278 **
   2279 ** Parameters    ref_value - Reference value
   2280 **               p_track_adv_cback - ADV callback
   2281 **
   2282 ** Returns          None
   2283 **
   2284 *******************************************************************************/
   2285 extern void BTA_DmBleTrackAdvertiser(tBTA_DM_BLE_REF_VALUE ref_value,
   2286                             tBTA_BLE_TRACK_ADV_CBACK *p_track_adv_cback);
   2287 
   2288 /*******************************************************************************
   2289 **
   2290 ** Function         BTA_DmBleGetEnergyInfo
   2291 **
   2292 ** Description      This function is called to obtain the energy info
   2293 **
   2294 ** Parameters       p_cmpl_cback - Command complete callback
   2295 **
   2296 ** Returns          void
   2297 **
   2298 *******************************************************************************/
   2299 extern void BTA_DmBleGetEnergyInfo(tBTA_BLE_ENERGY_INFO_CBACK *p_cmpl_cback);
   2300 
   2301 /*******************************************************************************
   2302 **
   2303 ** Function         BTA_BrcmInit
   2304 **
   2305 ** Description      This function initializes Broadcom specific VS handler in BTA
   2306 **
   2307 ** Returns          void
   2308 **
   2309 *******************************************************************************/
   2310 extern void BTA_VendorInit  (void);
   2311 
   2312 /*******************************************************************************
   2313 **
   2314 ** Function         BTA_BrcmCleanup
   2315 **
   2316 ** Description      This function frees up Broadcom specific VS specific dynamic memory
   2317 **
   2318 ** Returns          void
   2319 **
   2320 *******************************************************************************/
   2321 extern void BTA_VendorCleanup (void);
   2322 
   2323 #endif
   2324 
   2325 #ifdef __cplusplus
   2326 }
   2327 #endif
   2328 
   2329 #endif /* BTA_API_H */
   2330