Home | History | Annotate | Download | only in include
      1 /******************************************************************************
      2  *
      3  *  Copyright (C) 1999-2012 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 #ifndef BT_TYPES_H
     20 #define BT_TYPES_H
     21 
     22 #include "data_types.h"
     23 
     24 #ifdef _WIN32
     25 #ifdef BLUESTACK_TESTER
     26     #include "bte_stack_entry.h"
     27 #endif
     28 #endif
     29 
     30 /* READ WELL !!
     31 **
     32 ** This section defines global events. These are events that cross layers.
     33 ** Any event that passes between layers MUST be one of these events. Tasks
     34 ** can use their own events internally, but a FUNDAMENTAL design issue is
     35 ** that global events MUST be one of these events defined below.
     36 **
     37 ** The convention used is the the event name contains the layer that the
     38 ** event is going to.
     39 */
     40 #define BT_EVT_MASK                 0xFF00
     41 #define BT_SUB_EVT_MASK             0x00FF
     42                                                 /* To Bluetooth Upper Layers        */
     43                                                 /************************************/
     44 #define BT_EVT_TO_BTU_L2C_EVT       0x0900      /* L2CAP event */
     45 #define BT_EVT_TO_BTU_HCI_EVT       0x1000      /* HCI Event                        */
     46 #define BT_EVT_TO_BTU_HCI_BR_EDR_EVT (0x0000 | BT_EVT_TO_BTU_HCI_EVT)      /* event from BR/EDR controller */
     47 #define BT_EVT_TO_BTU_HCI_AMP1_EVT   (0x0001 | BT_EVT_TO_BTU_HCI_EVT)      /* event from local AMP 1 controller */
     48 #define BT_EVT_TO_BTU_HCI_AMP2_EVT   (0x0002 | BT_EVT_TO_BTU_HCI_EVT)      /* event from local AMP 2 controller */
     49 #define BT_EVT_TO_BTU_HCI_AMP3_EVT   (0x0003 | BT_EVT_TO_BTU_HCI_EVT)      /* event from local AMP 3 controller */
     50 
     51 #define BT_EVT_TO_BTU_HCI_ACL       0x1100      /* ACL Data from HCI                */
     52 #define BT_EVT_TO_BTU_HCI_SCO       0x1200      /* SCO Data from HCI                */
     53 #define BT_EVT_TO_BTU_HCIT_ERR      0x1300      /* HCI Transport Error              */
     54 
     55 #define BT_EVT_TO_BTU_SP_EVT        0x1400      /* Serial Port Event                */
     56 #define BT_EVT_TO_BTU_SP_DATA       0x1500      /* Serial Port Data                 */
     57 
     58 #define BT_EVT_TO_BTU_HCI_CMD       0x1600      /* HCI command from upper layer     */
     59 
     60 
     61 #define BT_EVT_TO_BTU_L2C_SEG_XMIT  0x1900      /* L2CAP segment(s) transmitted     */
     62 
     63 #define BT_EVT_PROXY_INCOMING_MSG   0x1A00      /* BlueStackTester event: incoming message from target */
     64 
     65 #define BT_EVT_BTSIM                0x1B00      /* Insight BTSIM event */
     66 #define BT_EVT_BTISE                0x1C00      /* Insight Script Engine event */
     67 
     68                                                 /* To LM                            */
     69                                                 /************************************/
     70 #define BT_EVT_TO_LM_HCI_CMD        0x2000      /* HCI Command                      */
     71 #define BT_EVT_TO_LM_HCI_ACL        0x2100      /* HCI ACL Data                     */
     72 #define BT_EVT_TO_LM_HCI_SCO        0x2200      /* HCI SCO Data                     */
     73 #define BT_EVT_TO_LM_HCIT_ERR       0x2300      /* HCI Transport Error              */
     74 #define BT_EVT_TO_LM_LC_EVT         0x2400      /* LC event                         */
     75 #define BT_EVT_TO_LM_LC_LMP         0x2500      /* LC Received LMP command frame    */
     76 #define BT_EVT_TO_LM_LC_ACL         0x2600      /* LC Received ACL data             */
     77 #define BT_EVT_TO_LM_LC_SCO         0x2700      /* LC Received SCO data  (not used) */
     78 #define BT_EVT_TO_LM_LC_ACL_TX      0x2800      /* LMP data transmit complete       */
     79 #define BT_EVT_TO_LM_LC_LMPC_TX     0x2900      /* LMP Command transmit complete    */
     80 #define BT_EVT_TO_LM_LOCAL_ACL_LB   0x2a00      /* Data to be locally loopbacked    */
     81 #define BT_EVT_TO_LM_HCI_ACL_ACK    0x2b00      /* HCI ACL Data ack      (not used) */
     82 #define BT_EVT_TO_LM_DIAG           0x2c00      /* LM Diagnostics commands          */
     83 
     84 
     85 #define BT_EVT_TO_BTM_CMDS          0x2f00
     86 #define BT_EVT_TO_BTM_PM_MDCHG_EVT (0x0001 | BT_EVT_TO_BTM_CMDS)
     87 
     88 #define BT_EVT_TO_TCS_CMDS          0x3000
     89 
     90 #define BT_EVT_TO_OBX_CL_MSG        0x3100
     91 #define BT_EVT_TO_OBX_SR_MSG        0x3200
     92 
     93 #define BT_EVT_TO_CTP_CMDS          0x3300
     94 
     95 /* Obex Over L2CAP */
     96 #define BT_EVT_TO_OBX_CL_L2C_MSG    0x3400
     97 #define BT_EVT_TO_OBX_SR_L2C_MSG    0x3500
     98 
     99 /* ftp events */
    100 #define BT_EVT_TO_FTP_SRVR_CMDS     0x3600
    101 #define BT_EVT_TO_FTP_CLNT_CMDS     0x3700
    102 
    103 #define BT_EVT_TO_BTU_SAP           0x3800       /* SIM Access Profile events */
    104 
    105 /* opp events */
    106 #define BT_EVT_TO_OPP_SRVR_CMDS     0x3900
    107 #define BT_EVT_TO_OPP_CLNT_CMDS     0x3a00
    108 
    109 /* gap events */
    110 #define BT_EVT_TO_GAP_MSG           0x3b00
    111 
    112 /* start timer */
    113 #define BT_EVT_TO_START_TIMER       0x3c00
    114 
    115 /* stop timer */
    116 #define BT_EVT_TO_STOP_TIMER        0x3d00
    117 
    118 /* start quick timer */
    119 #define BT_EVT_TO_START_QUICK_TIMER 0x3e00
    120 
    121 
    122 /* for NFC                          */
    123                                                 /************************************/
    124 #define BT_EVT_TO_NFC_NCI           0x4000      /* NCI Command, Notification or Data*/
    125 #define BT_EVT_TO_NFC_NCI_VS        0x4200      /* Vendor specific message */
    126 #define BT_EVT_TO_NFC_MSGS          0x4300      /* messages between NFC and NCI task */
    127 
    128 #define BT_EVT_TO_NFCCSIM_NCI       0x4a00      /* events to NFCC simulation (NCI packets) */
    129 
    130 /* HCISU Events */
    131 
    132 #define BT_EVT_HCISU                0x5000
    133 
    134 #define BT_EVT_TO_HCISU_LP_APP_SLEEPING_EVT     (0x0005 | BT_EVT_HCISU)
    135 #define BT_EVT_TO_HCISU_LP_ALLOW_BT_SLEEP_EVT   (0x0006 | BT_EVT_HCISU)
    136 #define BT_EVT_TO_HCISU_LP_WAKEUP_HOST_EVT      (0x0007 | BT_EVT_HCISU)
    137 #define BT_EVT_TO_HCISU_LP_RCV_H4IBSS_EVT       (0x0008 | BT_EVT_HCISU)
    138 #define BT_EVT_TO_HCISU_H5_RESET_EVT            (0x0009 | BT_EVT_HCISU)
    139 #define BT_EVT_HCISU_START_QUICK_TIMER          (0x000a | BT_EVT_HCISU)
    140 
    141 #define BT_EVT_DATA_TO_AMP_1        0x5100
    142 #define BT_EVT_DATA_TO_AMP_15       0x5f00
    143 
    144 /* HSP Events */
    145 
    146 #define BT_EVT_BTU_HSP2             0x6000
    147 
    148 #define BT_EVT_TO_BTU_HSP2_EVT     (0x0001 | BT_EVT_BTU_HSP2)
    149 
    150 /* BPP Events */
    151 #define BT_EVT_TO_BPP_PR_CMDS       0x6100      /* Printer Events */
    152 #define BT_EVT_TO_BPP_SND_CMDS      0x6200      /* BPP Sender Events */
    153 
    154 /* BIP Events */
    155 #define BT_EVT_TO_BIP_CMDS          0x6300
    156 
    157 /* HCRP Events */
    158 
    159 #define BT_EVT_BTU_HCRP             0x7000
    160 
    161 #define BT_EVT_TO_BTU_HCRP_EVT     (0x0001 | BT_EVT_BTU_HCRP)
    162 #define BT_EVT_TO_BTU_HCRPM_EVT    (0x0002 | BT_EVT_BTU_HCRP)
    163 
    164 
    165 #define BT_EVT_BTU_HFP              0x8000
    166 #define BT_EVT_TO_BTU_HFP_EVT      (0x0001 | BT_EVT_BTU_HFP)
    167 
    168 #define BT_EVT_BTU_IPC_EVT          0x9000
    169 #define BT_EVT_BTU_IPC_LOGMSG_EVT  (0x0000 | BT_EVT_BTU_IPC_EVT)
    170 #define BT_EVT_BTU_IPC_ACL_EVT     (0x0001 | BT_EVT_BTU_IPC_EVT)
    171 #define BT_EVT_BTU_IPC_BTU_EVT     (0x0002 | BT_EVT_BTU_IPC_EVT)
    172 #define BT_EVT_BTU_IPC_L2C_EVT     (0x0003 | BT_EVT_BTU_IPC_EVT)
    173 #define BT_EVT_BTU_IPC_L2C_MSG_EVT (0x0004 | BT_EVT_BTU_IPC_EVT)
    174 #define BT_EVT_BTU_IPC_BTM_EVT     (0x0005 | BT_EVT_BTU_IPC_EVT)
    175 #define BT_EVT_BTU_IPC_AVDT_EVT    (0x0006 | BT_EVT_BTU_IPC_EVT)
    176 #define BT_EVT_BTU_IPC_SLIP_EVT    (0x0007 | BT_EVT_BTU_IPC_EVT)
    177 #define BT_EVT_BTU_IPC_MGMT_EVT    (0x0008 | BT_EVT_BTU_IPC_EVT)
    178 #define BT_EVT_BTU_IPC_BTTRC_EVT   (0x0009 | BT_EVT_BTU_IPC_EVT)
    179 #define BT_EVT_BTU_IPC_BURST_EVT   (0x000A | BT_EVT_BTU_IPC_EVT)
    180 
    181 /* Define the header of each buffer used in the Bluetooth stack.
    182 */
    183 typedef struct
    184 {
    185     UINT16          event;
    186     UINT16          len;
    187     UINT16          offset;
    188     UINT16          layer_specific;
    189 } BT_HDR;
    190 
    191 #define BT_HDR_SIZE (sizeof (BT_HDR))
    192 
    193 #define BT_PSM_SDP                      0x0001
    194 #define BT_PSM_RFCOMM                   0x0003
    195 #define BT_PSM_TCS                      0x0005
    196 #define BT_PSM_CTP                      0x0007
    197 #define BT_PSM_BNEP                     0x000F
    198 #define BT_PSM_HIDC                     0x0011
    199 #define BT_PSM_HIDI                     0x0013
    200 #define BT_PSM_UPNP                     0x0015
    201 #define BT_PSM_AVCTP                    0x0017
    202 #define BT_PSM_AVDTP                    0x0019
    203 #define BT_PSM_AVCTP_13                 0x001B /* Advanced Control - Browsing */
    204 #define BT_PSM_UDI_CP                   0x001D /* Unrestricted Digital Information Profile C-Plane  */
    205 #define BT_PSM_ATT                      0x001F /* Attribute Protocol  */
    206 
    207 
    208 /* These macros extract the HCI opcodes from a buffer
    209 */
    210 #define HCI_GET_CMD_HDR_OPCODE(p)    (UINT16)((*((UINT8 *)((p) + 1) + p->offset) + \
    211                                               (*((UINT8 *)((p) + 1) + p->offset + 1) << 8)))
    212 #define HCI_GET_CMD_HDR_PARAM_LEN(p) (UINT8)  (*((UINT8 *)((p) + 1) + p->offset + 2))
    213 
    214 #define HCI_GET_EVT_HDR_OPCODE(p)    (UINT8)(*((UINT8 *)((p) + 1) + p->offset))
    215 #define HCI_GET_EVT_HDR_PARAM_LEN(p) (UINT8)  (*((UINT8 *)((p) + 1) + p->offset + 1))
    216 
    217 
    218 /********************************************************************************
    219 ** Macros to get and put bytes to and from a stream (Little Endian format).
    220 */
    221 #define UINT32_TO_STREAM(p, u32) {*(p)++ = (UINT8)(u32); *(p)++ = (UINT8)((u32) >> 8); *(p)++ = (UINT8)((u32) >> 16); *(p)++ = (UINT8)((u32) >> 24);}
    222 #define UINT24_TO_STREAM(p, u24) {*(p)++ = (UINT8)(u24); *(p)++ = (UINT8)((u24) >> 8); *(p)++ = (UINT8)((u24) >> 16);}
    223 #define UINT16_TO_STREAM(p, u16) {*(p)++ = (UINT8)(u16); *(p)++ = (UINT8)((u16) >> 8);}
    224 #define UINT8_TO_STREAM(p, u8)   {*(p)++ = (UINT8)(u8);}
    225 #define INT8_TO_STREAM(p, u8)    {*(p)++ = (INT8)(u8);}
    226 #define ARRAY32_TO_STREAM(p, a)  {register int ijk; for (ijk = 0; ijk < 32;           ijk++) *(p)++ = (UINT8) a[31 - ijk];}
    227 #define ARRAY16_TO_STREAM(p, a)  {register int ijk; for (ijk = 0; ijk < 16;           ijk++) *(p)++ = (UINT8) a[15 - ijk];}
    228 #define ARRAY8_TO_STREAM(p, a)   {register int ijk; for (ijk = 0; ijk < 8;            ijk++) *(p)++ = (UINT8) a[7 - ijk];}
    229 #define BDADDR_TO_STREAM(p, a)   {register int ijk; for (ijk = 0; ijk < BD_ADDR_LEN;  ijk++) *(p)++ = (UINT8) a[BD_ADDR_LEN - 1 - ijk];}
    230 #define LAP_TO_STREAM(p, a)      {register int ijk; for (ijk = 0; ijk < LAP_LEN;      ijk++) *(p)++ = (UINT8) a[LAP_LEN - 1 - ijk];}
    231 #define DEVCLASS_TO_STREAM(p, a) {register int ijk; for (ijk = 0; ijk < DEV_CLASS_LEN;ijk++) *(p)++ = (UINT8) a[DEV_CLASS_LEN - 1 - ijk];}
    232 #define ARRAY_TO_STREAM(p, a, len) {register int ijk; for (ijk = 0; ijk < len;        ijk++) *(p)++ = (UINT8) a[ijk];}
    233 #define REVERSE_ARRAY_TO_STREAM(p, a, len)  {register int ijk; for (ijk = 0; ijk < len; ijk++) *(p)++ = (UINT8) a[len - 1 - ijk];}
    234 
    235 #define STREAM_TO_UINT8(u8, p)   {u8 = (UINT8)(*(p)); (p) += 1;}
    236 #define STREAM_TO_UINT16(u16, p) {u16 = ((UINT16)(*(p)) + (((UINT16)(*((p) + 1))) << 8)); (p) += 2;}
    237 #define STREAM_TO_UINT24(u32, p) {u32 = (((UINT32)(*(p))) + ((((UINT32)(*((p) + 1)))) << 8) + ((((UINT32)(*((p) + 2)))) << 16) ); (p) += 3;}
    238 #define STREAM_TO_UINT32(u32, p) {u32 = (((UINT32)(*(p))) + ((((UINT32)(*((p) + 1)))) << 8) + ((((UINT32)(*((p) + 2)))) << 16) + ((((UINT32)(*((p) + 3)))) << 24)); (p) += 4;}
    239 #define STREAM_TO_BDADDR(a, p)   {register int ijk; register UINT8 *pbda = (UINT8 *)a + BD_ADDR_LEN - 1; for (ijk = 0; ijk < BD_ADDR_LEN; ijk++) *pbda-- = *p++;}
    240 #define STREAM_TO_ARRAY32(a, p)  {register int ijk; register UINT8 *_pa = (UINT8 *)a + 31; for (ijk = 0; ijk < 32; ijk++) *_pa-- = *p++;}
    241 #define STREAM_TO_ARRAY16(a, p)  {register int ijk; register UINT8 *_pa = (UINT8 *)a + 15; for (ijk = 0; ijk < 16; ijk++) *_pa-- = *p++;}
    242 #define STREAM_TO_ARRAY8(a, p)   {register int ijk; register UINT8 *_pa = (UINT8 *)a + 7; for (ijk = 0; ijk < 8; ijk++) *_pa-- = *p++;}
    243 #define STREAM_TO_DEVCLASS(a, p) {register int ijk; register UINT8 *_pa = (UINT8 *)a + DEV_CLASS_LEN - 1; for (ijk = 0; ijk < DEV_CLASS_LEN; ijk++) *_pa-- = *p++;}
    244 #define STREAM_TO_LAP(a, p)      {register int ijk; register UINT8 *plap = (UINT8 *)a + LAP_LEN - 1; for (ijk = 0; ijk < LAP_LEN; ijk++) *plap-- = *p++;}
    245 #define STREAM_TO_ARRAY(a, p, len) {register int ijk; for (ijk = 0; ijk < len; ijk++) ((UINT8 *) a)[ijk] = *p++;}
    246 #define REVERSE_STREAM_TO_ARRAY(a, p, len) {register int ijk; register UINT8 *_pa = (UINT8 *)a + len - 1; for (ijk = 0; ijk < len; ijk++) *_pa-- = *p++;}
    247 
    248 /********************************************************************************
    249 ** Macros to get and put bytes to and from a field (Little Endian format).
    250 ** These are the same as to stream, except the pointer is not incremented.
    251 */
    252 #define UINT32_TO_FIELD(p, u32) {*(UINT8 *)(p) = (UINT8)(u32); *((UINT8 *)(p)+1) = (UINT8)((u32) >> 8); *((UINT8 *)(p)+2) = (UINT8)((u32) >> 16); *((UINT8 *)(p)+3) = (UINT8)((u32) >> 24);}
    253 #define UINT24_TO_FIELD(p, u24) {*(UINT8 *)(p) = (UINT8)(u24); *((UINT8 *)(p)+1) = (UINT8)((u24) >> 8); *((UINT8 *)(p)+2) = (UINT8)((u24) >> 16);}
    254 #define UINT16_TO_FIELD(p, u16) {*(UINT8 *)(p) = (UINT8)(u16); *((UINT8 *)(p)+1) = (UINT8)((u16) >> 8);}
    255 #define UINT8_TO_FIELD(p, u8)   {*(UINT8 *)(p) = (UINT8)(u8);}
    256 
    257 
    258 /********************************************************************************
    259 ** Macros to get and put bytes to and from a stream (Big Endian format)
    260 */
    261 #define UINT32_TO_BE_STREAM(p, u32) {*(p)++ = (UINT8)((u32) >> 24);  *(p)++ = (UINT8)((u32) >> 16); *(p)++ = (UINT8)((u32) >> 8); *(p)++ = (UINT8)(u32); }
    262 #define UINT24_TO_BE_STREAM(p, u24) {*(p)++ = (UINT8)((u24) >> 16); *(p)++ = (UINT8)((u24) >> 8); *(p)++ = (UINT8)(u24);}
    263 #define UINT16_TO_BE_STREAM(p, u16) {*(p)++ = (UINT8)((u16) >> 8); *(p)++ = (UINT8)(u16);}
    264 #define UINT8_TO_BE_STREAM(p, u8)   {*(p)++ = (UINT8)(u8);}
    265 #define ARRAY_TO_BE_STREAM(p, a, len) {register int ijk; for (ijk = 0; ijk < len; ijk++) *(p)++ = (UINT8) a[ijk];}
    266 
    267 #define BE_STREAM_TO_UINT8(u8, p)   {u8 = (UINT8)(*(p)); (p) += 1;}
    268 #define BE_STREAM_TO_UINT16(u16, p) {u16 = (UINT16)(((UINT16)(*(p)) << 8) + (UINT16)(*((p) + 1))); (p) += 2;}
    269 #define BE_STREAM_TO_UINT24(u32, p) {u32 = (((UINT32)(*((p) + 2))) + ((UINT32)(*((p) + 1)) << 8) + ((UINT32)(*(p)) << 16)); (p) += 3;}
    270 #define BE_STREAM_TO_UINT32(u32, p) {u32 = ((UINT32)(*((p) + 3)) + ((UINT32)(*((p) + 2)) << 8) + ((UINT32)(*((p) + 1)) << 16) + ((UINT32)(*(p)) << 24)); (p) += 4;}
    271 #define BE_STREAM_TO_ARRAY(p, a, len) {register int ijk; for (ijk = 0; ijk < len; ijk++) ((UINT8 *) a)[ijk] = *p++;}
    272 
    273 
    274 /********************************************************************************
    275 ** Macros to get and put bytes to and from a field (Big Endian format).
    276 ** These are the same as to stream, except the pointer is not incremented.
    277 */
    278 #define UINT32_TO_BE_FIELD(p, u32) {*(UINT8 *)(p) = (UINT8)((u32) >> 24);  *((UINT8 *)(p)+1) = (UINT8)((u32) >> 16); *((UINT8 *)(p)+2) = (UINT8)((u32) >> 8); *((UINT8 *)(p)+3) = (UINT8)(u32); }
    279 #define UINT24_TO_BE_FIELD(p, u24) {*(UINT8 *)(p) = (UINT8)((u24) >> 16); *((UINT8 *)(p)+1) = (UINT8)((u24) >> 8); *((UINT8 *)(p)+2) = (UINT8)(u24);}
    280 #define UINT16_TO_BE_FIELD(p, u16) {*(UINT8 *)(p) = (UINT8)((u16) >> 8); *((UINT8 *)(p)+1) = (UINT8)(u16);}
    281 #define UINT8_TO_BE_FIELD(p, u8)   {*(UINT8 *)(p) = (UINT8)(u8);}
    282 
    283 
    284 /* Common Bluetooth field definitions */
    285 #define BD_ADDR_LEN     6                   /* Device address length */
    286 typedef UINT8 BD_ADDR[BD_ADDR_LEN];         /* Device address */
    287 typedef UINT8 *BD_ADDR_PTR;                 /* Pointer to Device Address */
    288 
    289 #define AMP_KEY_TYPE_GAMP       0
    290 #define AMP_KEY_TYPE_WIFI       1
    291 #define AMP_KEY_TYPE_UWB        2
    292 typedef UINT8 tAMP_KEY_TYPE;
    293 
    294 #define BT_OCTET8_LEN    8
    295 typedef UINT8 BT_OCTET8[BT_OCTET8_LEN];   /* octet array: size 16 */
    296 
    297 #define LINK_KEY_LEN    16
    298 typedef UINT8 LINK_KEY[LINK_KEY_LEN];       /* Link Key */
    299 
    300 #define AMP_LINK_KEY_LEN        32
    301 typedef UINT8 AMP_LINK_KEY[AMP_LINK_KEY_LEN];   /* Dedicated AMP and GAMP Link Keys */
    302 
    303 #define BT_OCTET16_LEN    16
    304 typedef UINT8 BT_OCTET16[BT_OCTET16_LEN];   /* octet array: size 16 */
    305 
    306 #define PIN_CODE_LEN    16
    307 typedef UINT8 PIN_CODE[PIN_CODE_LEN];       /* Pin Code (upto 128 bits) MSB is 0 */
    308 typedef UINT8 *PIN_CODE_PTR;                /* Pointer to Pin Code */
    309 
    310 #define DEV_CLASS_LEN   3
    311 typedef UINT8 DEV_CLASS[DEV_CLASS_LEN];     /* Device class */
    312 typedef UINT8 *DEV_CLASS_PTR;               /* Pointer to Device class */
    313 
    314 #define EXT_INQ_RESP_LEN   3
    315 typedef UINT8 EXT_INQ_RESP[EXT_INQ_RESP_LEN];/* Extended Inquiry Response */
    316 typedef UINT8 *EXT_INQ_RESP_PTR;             /* Pointer to Extended Inquiry Response */
    317 
    318 #define BD_NAME_LEN     248
    319 typedef UINT8 BD_NAME[BD_NAME_LEN + 1];         /* Device name */
    320 typedef UINT8 *BD_NAME_PTR;                 /* Pointer to Device name */
    321 
    322 #define BD_FEATURES_LEN 8
    323 typedef UINT8 BD_FEATURES[BD_FEATURES_LEN]; /* LMP features supported by device */
    324 
    325 #define BT_EVENT_MASK_LEN  8
    326 typedef UINT8 BT_EVENT_MASK[BT_EVENT_MASK_LEN];   /* Event Mask */
    327 
    328 #define LAP_LEN         3
    329 typedef UINT8 LAP[LAP_LEN];                 /* IAC as passed to Inquiry (LAP) */
    330 typedef UINT8 INQ_LAP[LAP_LEN];             /* IAC as passed to Inquiry (LAP) */
    331 
    332 #define RAND_NUM_LEN    16
    333 typedef UINT8 RAND_NUM[RAND_NUM_LEN];
    334 
    335 #define ACO_LEN         12
    336 typedef UINT8 ACO[ACO_LEN];                 /* Authenticated ciphering offset */
    337 
    338 #define COF_LEN         12
    339 typedef UINT8 COF[COF_LEN];                 /* ciphering offset number */
    340 
    341 typedef struct {
    342     UINT8               qos_flags;          /* TBD */
    343     UINT8               service_type;       /* see below */
    344     UINT32              token_rate;         /* bytes/second */
    345     UINT32              token_bucket_size;  /* bytes */
    346     UINT32              peak_bandwidth;     /* bytes/second */
    347     UINT32              latency;            /* microseconds */
    348     UINT32              delay_variation;    /* microseconds */
    349 } FLOW_SPEC;
    350 
    351 /* Values for service_type */
    352 #define NO_TRAFFIC      0
    353 #define BEST_EFFORT     1
    354 #define GUARANTEED      2
    355 
    356 /* Service class of the CoD */
    357 #define SERV_CLASS_NETWORKING               (1 << 1)
    358 #define SERV_CLASS_RENDERING                (1 << 2)
    359 #define SERV_CLASS_CAPTURING                (1 << 3)
    360 #define SERV_CLASS_OBJECT_TRANSFER          (1 << 4)
    361 #define SERV_CLASS_OBJECT_AUDIO             (1 << 5)
    362 #define SERV_CLASS_OBJECT_TELEPHONY         (1 << 6)
    363 #define SERV_CLASS_OBJECT_INFORMATION       (1 << 7)
    364 
    365 /* Second byte */
    366 #define SERV_CLASS_LIMITED_DISC_MODE        (0x20)
    367 
    368 /* Field size definitions. Note that byte lengths are rounded up. */
    369 #define ACCESS_CODE_BIT_LEN             72
    370 #define ACCESS_CODE_BYTE_LEN            9
    371 #define SHORTENED_ACCESS_CODE_BIT_LEN   68
    372 
    373 typedef UINT8 ACCESS_CODE[ACCESS_CODE_BYTE_LEN];
    374 
    375 #define SYNTH_TX                1           /* want synth code to TRANSMIT at this freq */
    376 #define SYNTH_RX                2           /* want synth code to RECEIVE at this freq */
    377 
    378 #define SYNC_REPS 1             /* repeats of sync word transmitted to start of burst */
    379 
    380 /* Bluetooth CLK27 */
    381 #define BT_CLK27            (2 << 26)
    382 
    383 /* Bluetooth CLK12 is 1.28 sec */
    384 #define BT_CLK12_TO_MS(x)    ((x) * 1280)
    385 #define BT_MS_TO_CLK12(x)    ((x) / 1280)
    386 #define BT_CLK12_TO_SLOTS(x) ((x) << 11)
    387 
    388 /* Bluetooth CLK is 0.625 msec */
    389 #define BT_CLK_TO_MS(x)      (((x) * 5 + 3) / 8)
    390 #define BT_MS_TO_CLK(x)      (((x) * 8 + 2) / 5)
    391 
    392 #define BT_CLK_TO_MICROSECS(x)  (((x) * 5000 + 3) / 8)
    393 #define BT_MICROSECS_TO_CLK(x)  (((x) * 8 + 2499) / 5000)
    394 
    395 /* Maximum UUID size - 16 bytes, and structure to hold any type of UUID. */
    396 #define MAX_UUID_SIZE              16
    397 typedef struct
    398 {
    399 #define LEN_UUID_16     2
    400 #define LEN_UUID_32     4
    401 #define LEN_UUID_128    16
    402 
    403     UINT16          len;
    404 
    405     union
    406     {
    407         UINT16      uuid16;
    408         UINT32      uuid32;
    409         UINT8       uuid128[MAX_UUID_SIZE];
    410     } uu;
    411 
    412 } tBT_UUID;
    413 
    414 #define BT_EIR_FLAGS_TYPE                   0x01
    415 #define BT_EIR_MORE_16BITS_UUID_TYPE        0x02
    416 #define BT_EIR_COMPLETE_16BITS_UUID_TYPE    0x03
    417 #define BT_EIR_MORE_32BITS_UUID_TYPE        0x04
    418 #define BT_EIR_COMPLETE_32BITS_UUID_TYPE    0x05
    419 #define BT_EIR_MORE_128BITS_UUID_TYPE       0x06
    420 #define BT_EIR_COMPLETE_128BITS_UUID_TYPE   0x07
    421 #define BT_EIR_SHORTENED_LOCAL_NAME_TYPE    0x08
    422 #define BT_EIR_COMPLETE_LOCAL_NAME_TYPE     0x09
    423 #define BT_EIR_TX_POWER_LEVEL_TYPE          0x0A
    424 #define BT_EIR_OOB_BD_ADDR_TYPE             0x0C
    425 #define BT_EIR_OOB_COD_TYPE                 0x0D
    426 #define BT_EIR_OOB_SSP_HASH_C_TYPE          0x0E
    427 #define BT_EIR_OOB_SSP_RAND_R_TYPE          0x0F
    428 #define BT_EIR_MANUFACTURER_SPECIFIC_TYPE   0xFF
    429 
    430 #define BT_OOB_COD_SIZE            3
    431 #define BT_OOB_HASH_C_SIZE         16
    432 #define BT_OOB_RAND_R_SIZE         16
    433 
    434 /* Broadcom proprietary UUIDs and reserved PSMs
    435 **
    436 ** The lowest 4 bytes byte of the UUID or GUID depends on the feature. Typically,
    437 ** the value of those bytes will be the PSM or SCN, but it is up to the features.
    438 */
    439 #define BRCM_PROPRIETARY_UUID_BASE  0xDA, 0x23, 0x41, 0x02, 0xA3, 0xBB, 0xC1, 0x71, 0xBA, 0x09, 0x6f, 0x21
    440 #define BRCM_PROPRIETARY_GUID_BASE  0xda23, 0x4102, 0xa3, 0xbb, 0xc1, 0x71, 0xba, 0x09, 0x6f, 0x21
    441 
    442 /* We will not allocate a PSM in the reserved range to 3rd party apps
    443 */
    444 #define BRCM_RESERVED_PSM_START	    0x5AE1
    445 #define BRCM_RESERVED_PSM_END	    0x5AFF
    446 
    447 #define BRCM_UTILITY_SERVICE_PSM    0x5AE1
    448 #define BRCM_MATCHER_PSM            0x5AE3
    449 
    450 /* Connection statistics
    451 */
    452 
    453 /* Structure to hold connection stats */
    454 #ifndef BT_CONN_STATS_DEFINED
    455 #define BT_CONN_STATS_DEFINED
    456 
    457 /* These bits are used in the bIsConnected field */
    458 #define BT_CONNECTED_USING_BREDR   1
    459 #define BT_CONNECTED_USING_AMP     2
    460 
    461 typedef struct
    462 {
    463     UINT32   is_connected;
    464     INT32    rssi;
    465     UINT32   bytes_sent;
    466     UINT32   bytes_rcvd;
    467     UINT32   duration;
    468 } tBT_CONN_STATS;
    469 
    470 #endif
    471 
    472 /* AMP transport selection criteria definitions.
    473 ** NOTE: if underlying L2CAP connection uses basic mode than it can use only BR/EDR.
    474 **       For such L2CAP connections AMP connection the criteria provided by application
    475 **       is reset by AMP manager to AMP_USE_AMP_NEVER.
    476 */
    477 #define AMP_USE_AMP_NEVER                      0   /* Connection only via BR/EDR controller, no AMP allowed        */
    478 #define AMP_USE_AMP_IF_PEER_TRIES_IT           1   /* Allow AMP to be used if the peer tries to use it             */
    479 #define AMP_USE_AMP_IF_PHY_CONN_EXISTS         2   /* Use AMP if there is already a physical connection (default)  */
    480 #define AMP_USE_AMP_IF_LC_POWER_ON             3   /* Only try to use AMP if the Local Controller is powered on    */
    481 #define AMP_USE_AMP_IF_LC_AND_PEER_POWER_ON    4   /* Only try to use AMP if both LC and peer are powered on       */
    482 #define AMP_USE_AMP_IF_POSSIBLE                5   /* Try to use AMP if at all possible                            */
    483 #define AMP_USE_AMP_ONLY                       6   /* Only use AMP, never use BR/EDR                               */
    484 #define AMP_USE_AMP_MAX_DEF            AMP_USE_AMP_ONLY /* Maximum enum defined for AMP Criteria                        */
    485 
    486 #define	AMP_AUTOSWITCH_ALLOWED 		           0x80000000  /* flag to indicate that this connection is auto-switch ready */
    487 #define AMP_USE_CURRENT_CRITERIA               0xFFFFFFFF  /* Flag if previous criteria was to be still used        */
    488 
    489 typedef UINT32 tAMP_CRITERIA;
    490 
    491 
    492 /*****************************************************************************
    493 **                          Low Energy definitions
    494 **
    495 ** Address types
    496 */
    497 #define BLE_ADDR_PUBLIC         0x00
    498 #define BLE_ADDR_RANDOM         0x01
    499 #define BLE_ADDR_TYPE_MASK      (BLE_ADDR_RANDOM | BLE_ADDR_PUBLIC)
    500 typedef UINT8 tBLE_ADDR_TYPE;
    501 
    502 #define BLE_ADDR_IS_STATIC(x)   ((x[0] & 0xC0) == 0xC0)
    503 
    504 typedef struct
    505 {
    506     tBLE_ADDR_TYPE      type;
    507     BD_ADDR             bda;
    508 } tBLE_BD_ADDR;
    509 
    510 /* Device Types
    511 */
    512 #define BT_DEVICE_TYPE_BREDR   0x01
    513 #define BT_DEVICE_TYPE_BLE     0x02
    514 #define BT_DEVICE_TYPE_DUMO    0x03
    515 typedef UINT8 tBT_DEVICE_TYPE;
    516 /*****************************************************************************/
    517 
    518 
    519 /* Define trace levels */
    520 #define BT_TRACE_LEVEL_NONE    0          /* No trace messages to be generated    */
    521 #define BT_TRACE_LEVEL_ERROR   1          /* Error condition trace messages       */
    522 #define BT_TRACE_LEVEL_WARNING 2          /* Warning condition trace messages     */
    523 #define BT_TRACE_LEVEL_API     3          /* API traces                           */
    524 #define BT_TRACE_LEVEL_EVENT   4          /* Debug messages for events            */
    525 #define BT_TRACE_LEVEL_DEBUG   5          /* Full debug messages                  */
    526 
    527 #define MAX_TRACE_LEVEL        5
    528 
    529 
    530 /* Define New Trace Type Definition */
    531 /* TRACE_CTRL_TYPE                  0x^^000000*/
    532 #define TRACE_CTRL_MASK             0xff000000
    533 #define TRACE_GET_CTRL(x)           ((((UINT32)(x)) & TRACE_CTRL_MASK) >> 24)
    534 
    535 #define TRACE_CTRL_GENERAL          0x00000000
    536 #define TRACE_CTRL_STR_RESOURCE     0x01000000
    537 #define TRACE_CTRL_SEQ_FLOW         0x02000000
    538 #define TRACE_CTRL_MAX_NUM          3
    539 
    540 /* LAYER SPECIFIC                   0x00^^0000*/
    541 #define TRACE_LAYER_MASK            0x00ff0000
    542 #define TRACE_GET_LAYER(x)          ((((UINT32)(x)) & TRACE_LAYER_MASK) >> 16)
    543 
    544 #define TRACE_LAYER_NONE            0x00000000
    545 #define TRACE_LAYER_USB             0x00010000
    546 #define TRACE_LAYER_SERIAL          0x00020000
    547 #define TRACE_LAYER_SOCKET          0x00030000
    548 #define TRACE_LAYER_RS232           0x00040000
    549 #define TRACE_LAYER_TRANS_MAX_NUM   5
    550 #define TRACE_LAYER_TRANS_ALL       0x007f0000
    551 #define TRACE_LAYER_LC              0x00050000
    552 #define TRACE_LAYER_LM              0x00060000
    553 #define TRACE_LAYER_HCI             0x00070000
    554 #define TRACE_LAYER_L2CAP           0x00080000
    555 #define TRACE_LAYER_RFCOMM          0x00090000
    556 #define TRACE_LAYER_SDP             0x000a0000
    557 #define TRACE_LAYER_TCS             0x000b0000
    558 #define TRACE_LAYER_OBEX            0x000c0000
    559 #define TRACE_LAYER_BTM             0x000d0000
    560 #define TRACE_LAYER_GAP             0x000e0000
    561 #define TRACE_LAYER_DUN             0x000f0000
    562 #define TRACE_LAYER_GOEP            0x00100000
    563 #define TRACE_LAYER_ICP             0x00110000
    564 #define TRACE_LAYER_HSP2            0x00120000
    565 #define TRACE_LAYER_SPP             0x00130000
    566 #define TRACE_LAYER_CTP             0x00140000
    567 #define TRACE_LAYER_BPP             0x00150000
    568 #define TRACE_LAYER_HCRP            0x00160000
    569 #define TRACE_LAYER_FTP             0x00170000
    570 #define TRACE_LAYER_OPP             0x00180000
    571 #define TRACE_LAYER_BTU             0x00190000
    572 #define TRACE_LAYER_GKI             0x001a0000
    573 #define TRACE_LAYER_BNEP            0x001b0000
    574 #define TRACE_LAYER_PAN             0x001c0000
    575 #define TRACE_LAYER_HFP             0x001d0000
    576 #define TRACE_LAYER_HID             0x001e0000
    577 #define TRACE_LAYER_BIP             0x001f0000
    578 #define TRACE_LAYER_AVP             0x00200000
    579 #define TRACE_LAYER_A2D             0x00210000
    580 #define TRACE_LAYER_SAP             0x00220000
    581 #define TRACE_LAYER_AMP             0x00230000
    582 #define TRACE_LAYER_MCA             0x00240000
    583 #define TRACE_LAYER_ATT             0x00250000
    584 #define TRACE_LAYER_SMP             0x00260000
    585 #define TRACE_LAYER_NFC             0x00270000
    586 #define TRACE_LAYER_NCI             0x00280000
    587 #define TRACE_LAYER_LLCP            0x00290000
    588 #define TRACE_LAYER_NDEF            0x002a0000
    589 #define TRACE_LAYER_RW              0x002b0000
    590 #define TRACE_LAYER_CE              0x002c0000
    591 #define TRACE_LAYER_P2P             0x002d0000
    592 #define TRACE_LAYER_SNEP            0x002e0000
    593 #define TRACE_LAYER_CHO             0x002f0000
    594 #define TRACE_LAYER_NFA             0x00300000
    595 
    596 #define TRACE_LAYER_MAX_NUM         0x0031
    597 
    598 
    599 /* TRACE_ORIGINATOR                 0x0000^^00*/
    600 #define TRACE_ORG_MASK              0x0000ff00
    601 #define TRACE_GET_ORG(x)            ((((UINT32)(x)) & TRACE_ORG_MASK) >> 8)
    602 
    603 #define TRACE_ORG_STACK             0x00000000
    604 #define TRACE_ORG_HCI_TRANS         0x00000100
    605 #define TRACE_ORG_PROTO_DISP        0x00000200
    606 #define TRACE_ORG_RPC               0x00000300
    607 #define TRACE_ORG_GKI               0x00000400
    608 #define TRACE_ORG_APPL              0x00000500
    609 #define TRACE_ORG_SCR_WRAPPER       0x00000600
    610 #define TRACE_ORG_SCR_ENGINE        0x00000700
    611 #define TRACE_ORG_USER_SCR          0x00000800
    612 #define TRACE_ORG_TESTER            0x00000900
    613 #define TRACE_ORG_MAX_NUM           10          /* 32-bit mask; must be < 32 */
    614 #define TRACE_LITE_ORG_MAX_NUM		6
    615 #define TRACE_ORG_ALL               0x03ff
    616 #define TRACE_ORG_RPC_TRANS         0x04
    617 
    618 #define TRACE_ORG_REG               0x00000909
    619 #define TRACE_ORG_REG_SUCCESS       0x0000090a
    620 
    621 /* TRACE_TYPE                       0x000000^^*/
    622 #define TRACE_TYPE_MASK             0x000000ff
    623 #define TRACE_GET_TYPE(x)           (((UINT32)(x)) & TRACE_TYPE_MASK)
    624 
    625 #define TRACE_TYPE_ERROR            0x00000000
    626 #define TRACE_TYPE_WARNING          0x00000001
    627 #define TRACE_TYPE_API              0x00000002
    628 #define TRACE_TYPE_EVENT            0x00000003
    629 #define TRACE_TYPE_DEBUG            0x00000004
    630 #define TRACE_TYPE_STACK_ONLY_MAX   TRACE_TYPE_DEBUG
    631 #define TRACE_TYPE_TX               0x00000005
    632 #define TRACE_TYPE_RX               0x00000006
    633 #define TRACE_TYPE_DEBUG_ASSERT     0x00000007
    634 #define TRACE_TYPE_GENERIC          0x00000008
    635 #define TRACE_TYPE_REG              0x00000009
    636 #define TRACE_TYPE_REG_SUCCESS      0x0000000a
    637 #define TRACE_TYPE_CMD_TX           0x0000000b
    638 #define TRACE_TYPE_EVT_TX           0x0000000c
    639 #define TRACE_TYPE_ACL_TX           0x0000000d
    640 #define TRACE_TYPE_CMD_RX           0x0000000e
    641 #define TRACE_TYPE_EVT_RX           0x0000000f
    642 #define TRACE_TYPE_ACL_RX           0x00000010
    643 #define TRACE_TYPE_TARGET_TRACE     0x00000011
    644 #define TRACE_TYPE_SCO_TX           0x00000012
    645 #define TRACE_TYPE_SCO_RX           0x00000013
    646 
    647 
    648 #define TRACE_TYPE_MAX_NUM          20
    649 #define TRACE_TYPE_ALL              0xffff
    650 
    651 /* Define color for script type */
    652 #define SCR_COLOR_DEFAULT       0
    653 #define SCR_COLOR_TYPE_COMMENT  1
    654 #define SCR_COLOR_TYPE_COMMAND  2
    655 #define SCR_COLOR_TYPE_EVENT    3
    656 #define SCR_COLOR_TYPE_SELECT   4
    657 
    658 /* Define protocol trace flag values */
    659 #define SCR_PROTO_TRACE_HCI_SUMMARY 0x00000001
    660 #define SCR_PROTO_TRACE_HCI_DATA    0x00000002
    661 #define SCR_PROTO_TRACE_L2CAP       0x00000004
    662 #define SCR_PROTO_TRACE_RFCOMM      0x00000008
    663 #define SCR_PROTO_TRACE_SDP         0x00000010
    664 #define SCR_PROTO_TRACE_TCS         0x00000020
    665 #define SCR_PROTO_TRACE_OBEX        0x00000040
    666 #define SCR_PROTO_TRACE_OAPP        0x00000080 /* OBEX Application Profile */
    667 #define SCR_PROTO_TRACE_AMP         0x00000100
    668 #define SCR_PROTO_TRACE_BNEP        0x00000200
    669 #define SCR_PROTO_TRACE_AVP         0x00000400
    670 #define SCR_PROTO_TRACE_MCA         0x00000800
    671 #define SCR_PROTO_TRACE_ATT         0x00001000
    672 #define SCR_PROTO_TRACE_SMP         0x00002000
    673 #define SCR_PROTO_TRACE_NCI         0x00004000
    674 #define SCR_PROTO_TRACE_LLCP        0x00008000
    675 #define SCR_PROTO_TRACE_NDEF        0x00010000
    676 #define SCR_PROTO_TRACE_RW          0x00020000
    677 #define SCR_PROTO_TRACE_CE          0x00040000
    678 #define SCR_PROTO_TRACE_SNEP        0x00080000
    679 #define SCR_PROTO_TRACE_CHO         0x00100000
    680 #define SCR_PROTO_TRACE_ALL         0x001fffff
    681 #define SCR_PROTO_TRACE_HCI_LOGGING_VSE 0x0800 /* Brcm vs event for logmsg and protocol traces */
    682 
    683 #define MAX_SCRIPT_TYPE             5
    684 
    685 #define TCS_PSM_INTERCOM        5
    686 #define TCS_PSM_CORDLESS        7
    687 #define BT_PSM_BNEP             0x000F
    688 /* Define PSMs HID uses */
    689 #define HID_PSM_CONTROL         0x0011
    690 #define HID_PSM_INTERRUPT       0x0013
    691 
    692 #if defined(UCD_HID_INCLUDED) && (UCD_HID_INCLUDED == TRUE)
    693 #define UCD_PSM_MIN     0x8003
    694 #define UCD_PSM_MAX     0x8003
    695 #define UCD_PSM_HID     0x8003
    696 #endif
    697 
    698 /* Define a function for logging */
    699 typedef void (BT_LOG_FUNC) (int trace_type, const char *fmt_str, ...);
    700 
    701 #endif
    702 
    703