hcimsgs.h revision e53504e10abe3079c39a8a865dfb5c293ca23c01
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 HCIMSGS_H
20#define HCIMSGS_H
21
22#include "bt_target.h"
23#include "hcidefs.h"
24#include "bt_types.h"
25
26void bte_main_hci_send(BT_HDR *p_msg, UINT16 event);
27void bte_main_lpm_allow_bt_device_sleep(void);
28
29/* Message by message.... */
30
31extern BOOLEAN btsnd_hcic_inquiry(const LAP inq_lap, UINT8 duration,
32                                  UINT8 response_cnt);
33
34#define HCIC_PARAM_SIZE_INQUIRY 5
35
36
37#define HCIC_INQ_INQ_LAP_OFF    0
38#define HCIC_INQ_DUR_OFF        3
39#define HCIC_INQ_RSP_CNT_OFF    4
40                                                                    /* Inquiry */
41
42                                                                    /* Inquiry Cancel */
43extern BOOLEAN btsnd_hcic_inq_cancel(void);
44
45#define HCIC_PARAM_SIZE_INQ_CANCEL   0
46
47                                                                    /* Periodic Inquiry Mode */
48extern BOOLEAN btsnd_hcic_per_inq_mode(UINT16 max_period, UINT16 min_period,
49                                       const LAP inq_lap, UINT8 duration,
50                                       UINT8 response_cnt);
51
52#define HCIC_PARAM_SIZE_PER_INQ_MODE    9
53
54#define HCI_PER_INQ_MAX_INTRVL_OFF  0
55#define HCI_PER_INQ_MIN_INTRVL_OFF  2
56#define HCI_PER_INQ_INQ_LAP_OFF     4
57#define HCI_PER_INQ_DURATION_OFF    7
58#define HCI_PER_INQ_RSP_CNT_OFF     8
59                                                                    /* Periodic Inquiry Mode */
60
61                                                                    /* Exit Periodic Inquiry Mode */
62extern BOOLEAN btsnd_hcic_exit_per_inq(void);
63
64#define HCIC_PARAM_SIZE_EXIT_PER_INQ   0
65                                                                    /* Create Connection */
66extern BOOLEAN btsnd_hcic_create_conn(BD_ADDR dest, UINT16 packet_types,
67                                      UINT8 page_scan_rep_mode,
68                                      UINT8 page_scan_mode,
69                                      UINT16 clock_offset,
70                                      UINT8 allow_switch);
71
72#define HCIC_PARAM_SIZE_CREATE_CONN  13
73
74#define HCIC_CR_CONN_BD_ADDR_OFF        0
75#define HCIC_CR_CONN_PKT_TYPES_OFF      6
76#define HCIC_CR_CONN_REP_MODE_OFF       8
77#define HCIC_CR_CONN_PAGE_SCAN_MODE_OFF 9
78#define HCIC_CR_CONN_CLK_OFF_OFF        10
79#define HCIC_CR_CONN_ALLOW_SWITCH_OFF   12
80                                                                    /* Create Connection */
81
82                                                                    /* Disconnect */
83extern BOOLEAN btsnd_hcic_disconnect(UINT16 handle, UINT8 reason);
84
85#define HCIC_PARAM_SIZE_DISCONNECT 3
86
87#define HCI_DISC_HANDLE_OFF             0
88#define HCI_DISC_REASON_OFF             2
89                                                                    /* Disconnect */
90
91#if BTM_SCO_INCLUDED == TRUE
92                                                                    /* Add SCO Connection */
93extern BOOLEAN btsnd_hcic_add_SCO_conn (UINT16 handle, UINT16 packet_types);
94#endif /* BTM_SCO_INCLUDED */
95
96#define HCIC_PARAM_SIZE_ADD_SCO_CONN    4
97
98#define HCI_ADD_SCO_HANDLE_OFF          0
99#define HCI_ADD_SCO_PACKET_TYPES_OFF    2
100                                                                    /* Add SCO Connection */
101
102                                                                    /* Create Connection Cancel */
103extern BOOLEAN btsnd_hcic_create_conn_cancel(BD_ADDR dest);
104
105#define HCIC_PARAM_SIZE_CREATE_CONN_CANCEL  6
106
107#define HCIC_CR_CONN_CANCEL_BD_ADDR_OFF     0
108                                                                    /* Create Connection Cancel */
109
110                                                                    /* Accept Connection Request */
111extern BOOLEAN btsnd_hcic_accept_conn (BD_ADDR bd_addr, UINT8 role);
112
113#define HCIC_PARAM_SIZE_ACCEPT_CONN     7
114
115#define HCI_ACC_CONN_BD_ADDR_OFF        0
116#define HCI_ACC_CONN_ROLE_OFF           6
117                                                                    /* Accept Connection Request */
118
119                                                                    /* Reject Connection Request */
120extern BOOLEAN btsnd_hcic_reject_conn (BD_ADDR bd_addr, UINT8 reason);
121
122#define HCIC_PARAM_SIZE_REJECT_CONN      7
123
124#define HCI_REJ_CONN_BD_ADDR_OFF        0
125#define HCI_REJ_CONN_REASON_OFF         6
126                                                                    /* Reject Connection Request */
127
128                                                                    /* Link Key Request Reply */
129extern BOOLEAN btsnd_hcic_link_key_req_reply (BD_ADDR bd_addr,
130                                              LINK_KEY link_key);
131
132#define HCIC_PARAM_SIZE_LINK_KEY_REQ_REPLY   22
133
134#define HCI_LINK_KEY_REPLY_BD_ADDR_OFF  0
135#define HCI_LINK_KEY_REPLY_LINK_KEY_OFF 6
136                                                                    /* Link Key Request Reply  */
137
138                                                                    /* Link Key Request Neg Reply */
139extern BOOLEAN btsnd_hcic_link_key_neg_reply (BD_ADDR bd_addr);
140
141#define HCIC_PARAM_SIZE_LINK_KEY_NEG_REPLY   6
142
143#define HCI_LINK_KEY_NEG_REP_BD_ADR_OFF 0
144                                                                    /* Link Key Request Neg Reply  */
145
146                                                                    /* PIN Code Request Reply */
147extern BOOLEAN btsnd_hcic_pin_code_req_reply (BD_ADDR bd_addr,
148                                              UINT8 pin_code_len,
149                                              PIN_CODE pin_code);
150
151#define HCIC_PARAM_SIZE_PIN_CODE_REQ_REPLY   23
152
153#define HCI_PIN_CODE_REPLY_BD_ADDR_OFF  0
154#define HCI_PIN_CODE_REPLY_PIN_LEN_OFF  6
155#define HCI_PIN_CODE_REPLY_PIN_CODE_OFF 7
156                                                                    /* PIN Code Request Reply  */
157
158                                                                    /* Link Key Request Neg Reply */
159extern BOOLEAN btsnd_hcic_pin_code_neg_reply (BD_ADDR bd_addr);
160
161#define HCIC_PARAM_SIZE_PIN_CODE_NEG_REPLY   6
162
163#define HCI_PIN_CODE_NEG_REP_BD_ADR_OFF 0
164                                                                    /* Link Key Request Neg Reply  */
165
166                                                                    /* Change Connection Type */
167extern BOOLEAN btsnd_hcic_change_conn_type (UINT16 handle, UINT16 packet_types);
168
169#define HCIC_PARAM_SIZE_CHANGE_CONN_TYPE     4
170
171#define HCI_CHNG_PKT_TYPE_HANDLE_OFF    0
172#define HCI_CHNG_PKT_TYPE_PKT_TYPE_OFF  2
173                                                                    /* Change Connection Type */
174
175#define HCIC_PARAM_SIZE_CMD_HANDLE      2
176
177#define HCI_CMD_HANDLE_HANDLE_OFF       0
178
179extern BOOLEAN btsnd_hcic_auth_request (UINT16 handle);     /* Authentication Request */
180
181                                                                    /* Set Connection Encryption */
182extern BOOLEAN btsnd_hcic_set_conn_encrypt (UINT16 handle, BOOLEAN enable);
183#define HCIC_PARAM_SIZE_SET_CONN_ENCRYPT     3
184
185
186#define HCI_SET_ENCRYPT_HANDLE_OFF      0
187#define HCI_SET_ENCRYPT_ENABLE_OFF      2
188                                                                    /* Set Connection Encryption */
189
190                                                                    /* Remote Name Request */
191extern BOOLEAN btsnd_hcic_rmt_name_req (BD_ADDR bd_addr,
192                                        UINT8 page_scan_rep_mode,
193                                        UINT8 page_scan_mode,
194                                        UINT16 clock_offset);
195
196#define HCIC_PARAM_SIZE_RMT_NAME_REQ   10
197
198#define HCI_RMT_NAME_BD_ADDR_OFF        0
199#define HCI_RMT_NAME_REP_MODE_OFF       6
200#define HCI_RMT_NAME_PAGE_SCAN_MODE_OFF 7
201#define HCI_RMT_NAME_CLK_OFF_OFF        8
202                                                                    /* Remote Name Request */
203
204                                                                    /* Remote Name Request Cancel */
205extern BOOLEAN btsnd_hcic_rmt_name_req_cancel(BD_ADDR bd_addr);
206
207#define HCIC_PARAM_SIZE_RMT_NAME_REQ_CANCEL   6
208
209#define HCI_RMT_NAME_CANCEL_BD_ADDR_OFF       0
210                                                                    /* Remote Name Request Cancel */
211
212extern BOOLEAN btsnd_hcic_rmt_features_req(UINT16 handle);      /* Remote Features Request */
213
214                                                                    /* Remote Extended Features */
215extern BOOLEAN btsnd_hcic_rmt_ext_features(UINT16 handle, UINT8 page_num);
216
217#define HCIC_PARAM_SIZE_RMT_EXT_FEATURES   3
218
219#define HCI_RMT_EXT_FEATURES_HANDLE_OFF    0
220#define HCI_RMT_EXT_FEATURES_PAGE_NUM_OFF  2
221                                                                    /* Remote Extended Features */
222
223
224extern BOOLEAN btsnd_hcic_rmt_ver_req(UINT16 handle);           /* Remote Version Info Request */
225extern BOOLEAN btsnd_hcic_read_rmt_clk_offset(UINT16 handle);   /* Remote Clock Offset */
226extern BOOLEAN btsnd_hcic_read_lmp_handle(UINT16 handle);       /* Remote LMP Handle */
227
228extern BOOLEAN btsnd_hcic_setup_esco_conn (UINT16 handle,
229                                           UINT32 tx_bw, UINT32 rx_bw,
230                                           UINT16 max_latency, UINT16 voice,
231                                           UINT8 retrans_effort,
232                                           UINT16 packet_types);
233#define HCIC_PARAM_SIZE_SETUP_ESCO      17
234
235#define HCI_SETUP_ESCO_HANDLE_OFF       0
236#define HCI_SETUP_ESCO_TX_BW_OFF        2
237#define HCI_SETUP_ESCO_RX_BW_OFF        6
238#define HCI_SETUP_ESCO_MAX_LAT_OFF      10
239#define HCI_SETUP_ESCO_VOICE_OFF        12
240#define HCI_SETUP_ESCO_RETRAN_EFF_OFF   14
241#define HCI_SETUP_ESCO_PKT_TYPES_OFF    15
242
243
244extern BOOLEAN btsnd_hcic_accept_esco_conn (BD_ADDR bd_addr,
245                                            UINT32 tx_bw, UINT32 rx_bw,
246                                            UINT16 max_latency,
247                                            UINT16 content_fmt,
248                                            UINT8 retrans_effort,
249                                            UINT16 packet_types);
250#define HCIC_PARAM_SIZE_ACCEPT_ESCO     21
251
252#define HCI_ACCEPT_ESCO_BDADDR_OFF      0
253#define HCI_ACCEPT_ESCO_TX_BW_OFF       6
254#define HCI_ACCEPT_ESCO_RX_BW_OFF       10
255#define HCI_ACCEPT_ESCO_MAX_LAT_OFF     14
256#define HCI_ACCEPT_ESCO_VOICE_OFF       16
257#define HCI_ACCEPT_ESCO_RETRAN_EFF_OFF  18
258#define HCI_ACCEPT_ESCO_PKT_TYPES_OFF   19
259
260
261extern BOOLEAN btsnd_hcic_reject_esco_conn (BD_ADDR bd_addr, UINT8 reason);
262#define HCIC_PARAM_SIZE_REJECT_ESCO     7
263
264#define HCI_REJECT_ESCO_BDADDR_OFF      0
265#define HCI_REJECT_ESCO_REASON_OFF      6
266
267/* Hold Mode */
268extern BOOLEAN btsnd_hcic_hold_mode(UINT16 handle, UINT16 max_hold_period,
269                                    UINT16 min_hold_period);
270
271#define HCIC_PARAM_SIZE_HOLD_MODE       6
272
273#define HCI_HOLD_MODE_HANDLE_OFF        0
274#define HCI_HOLD_MODE_MAX_PER_OFF       2
275#define HCI_HOLD_MODE_MIN_PER_OFF       4
276                                                                    /* Hold Mode */
277
278                                                                    /* Sniff Mode */
279extern BOOLEAN btsnd_hcic_sniff_mode(UINT16 handle,
280                                     UINT16 max_sniff_period,
281                                     UINT16 min_sniff_period,
282                                     UINT16 sniff_attempt,
283                                     UINT16 sniff_timeout);
284
285#define HCIC_PARAM_SIZE_SNIFF_MODE      10
286
287
288#define HCI_SNIFF_MODE_HANDLE_OFF       0
289#define HCI_SNIFF_MODE_MAX_PER_OFF      2
290#define HCI_SNIFF_MODE_MIN_PER_OFF      4
291#define HCI_SNIFF_MODE_ATTEMPT_OFF      6
292#define HCI_SNIFF_MODE_TIMEOUT_OFF      8
293                                                                    /* Sniff Mode */
294
295extern BOOLEAN btsnd_hcic_exit_sniff_mode(UINT16 handle);       /* Exit Sniff Mode */
296
297                                                                    /* Park Mode */
298extern BOOLEAN btsnd_hcic_park_mode (UINT16 handle,
299                                     UINT16 beacon_max_interval,
300                                     UINT16 beacon_min_interval);
301
302#define HCIC_PARAM_SIZE_PARK_MODE       6
303
304#define HCI_PARK_MODE_HANDLE_OFF        0
305#define HCI_PARK_MODE_MAX_PER_OFF       2
306#define HCI_PARK_MODE_MIN_PER_OFF       4
307                                                                    /* Park Mode */
308
309extern BOOLEAN btsnd_hcic_exit_park_mode(UINT16 handle);  /* Exit Park Mode */
310
311                                                                    /* QoS Setup */
312extern BOOLEAN btsnd_hcic_qos_setup (UINT16 handle, UINT8 flags,
313                                     UINT8 service_type,
314                                     UINT32 token_rate, UINT32 peak,
315                                     UINT32 latency, UINT32 delay_var);
316
317#define HCIC_PARAM_SIZE_QOS_SETUP       20
318
319#define HCI_QOS_HANDLE_OFF              0
320#define HCI_QOS_FLAGS_OFF               2
321#define HCI_QOS_SERVICE_TYPE_OFF        3
322#define HCI_QOS_TOKEN_RATE_OFF          4
323#define HCI_QOS_PEAK_BANDWIDTH_OFF      8
324#define HCI_QOS_LATENCY_OFF             12
325#define HCI_QOS_DELAY_VAR_OFF           16
326                                                                    /* QoS Setup */
327
328                                                                    /* Switch Role Request */
329extern BOOLEAN btsnd_hcic_switch_role (BD_ADDR bd_addr, UINT8 role);
330
331#define HCIC_PARAM_SIZE_SWITCH_ROLE  7
332
333#define HCI_SWITCH_BD_ADDR_OFF          0
334#define HCI_SWITCH_ROLE_OFF             6
335                                                                    /* Switch Role Request */
336
337extern BOOLEAN btsnd_hcic_read_policy_set(UINT16 handle);       /* Read Policy Settings */
338
339                                                                    /* Write Policy Settings */
340extern BOOLEAN btsnd_hcic_write_policy_set(UINT16 handle, UINT16 settings);
341
342#define HCIC_PARAM_SIZE_WRITE_POLICY_SET     4
343
344#define HCI_WRITE_POLICY_HANDLE_OFF          0
345#define HCI_WRITE_POLICY_SETTINGS_OFF        2
346                                                                    /* Write Policy Settings */
347
348                                                                    /* Write Default Policy Settings */
349extern BOOLEAN btsnd_hcic_write_def_policy_set(UINT16 settings);
350
351#define HCIC_PARAM_SIZE_WRITE_DEF_POLICY_SET     2
352
353#define HCI_WRITE_DEF_POLICY_SETTINGS_OFF        0
354                                                                    /* Write Default Policy Settings */
355
356/******************************************
357**    Lisbon Features
358*******************************************/
359#if BTM_SSR_INCLUDED == TRUE
360                                                                    /* Sniff Subrating */
361extern BOOLEAN btsnd_hcic_sniff_sub_rate(UINT16 handle, UINT16 max_lat,
362                                         UINT16 min_remote_lat,
363                                         UINT16 min_local_lat);
364
365#define HCIC_PARAM_SIZE_SNIFF_SUB_RATE             8
366
367#define HCI_SNIFF_SUB_RATE_HANDLE_OFF              0
368#define HCI_SNIFF_SUB_RATE_MAX_LAT_OFF             2
369#define HCI_SNIFF_SUB_RATE_MIN_REM_LAT_OFF         4
370#define HCI_SNIFF_SUB_RATE_MIN_LOC_LAT_OFF         6
371                                                                    /* Sniff Subrating */
372
373#else   /* BTM_SSR_INCLUDED == FALSE */
374
375#define btsnd_hcic_sniff_sub_rate(handle, max_lat, min_remote_lat, min_local_lat) FALSE
376
377#endif  /* BTM_SSR_INCLUDED */
378
379                                                                    /* Extended Inquiry Response */
380extern void btsnd_hcic_write_ext_inquiry_response(void *buffer, UINT8 fec_req);
381
382#define HCIC_PARAM_SIZE_EXT_INQ_RESP        241
383
384#define HCIC_EXT_INQ_RESP_FEC_OFF     0
385#define HCIC_EXT_INQ_RESP_RESPONSE    1
386                                                                   /* IO Capabilities Response */
387extern BOOLEAN btsnd_hcic_io_cap_req_reply (BD_ADDR bd_addr, UINT8 capability,
388                                            UINT8 oob_present, UINT8 auth_req);
389
390#define HCIC_PARAM_SIZE_IO_CAP_RESP     9
391
392#define HCI_IO_CAP_BD_ADDR_OFF          0
393#define HCI_IO_CAPABILITY_OFF           6
394#define HCI_IO_CAP_OOB_DATA_OFF         7
395#define HCI_IO_CAP_AUTH_REQ_OFF         8
396
397                                                                    /* IO Capabilities Req Neg Reply */
398extern BOOLEAN btsnd_hcic_io_cap_req_neg_reply (BD_ADDR bd_addr, UINT8 err_code);
399
400#define HCIC_PARAM_SIZE_IO_CAP_NEG_REPLY 7
401
402#define HCI_IO_CAP_NR_BD_ADDR_OFF        0
403#define HCI_IO_CAP_NR_ERR_CODE           6
404
405                                                         /* Read Local OOB Data */
406extern BOOLEAN btsnd_hcic_read_local_oob_data (void);
407
408#define HCIC_PARAM_SIZE_R_LOCAL_OOB     0
409
410
411extern BOOLEAN btsnd_hcic_user_conf_reply (BD_ADDR bd_addr, BOOLEAN is_yes);
412
413#define HCIC_PARAM_SIZE_UCONF_REPLY     6
414
415#define HCI_USER_CONF_BD_ADDR_OFF       0
416
417
418extern BOOLEAN btsnd_hcic_user_passkey_reply (BD_ADDR bd_addr, UINT32 value);
419
420#define HCIC_PARAM_SIZE_U_PKEY_REPLY    10
421
422#define HCI_USER_PASSKEY_BD_ADDR_OFF    0
423#define HCI_USER_PASSKEY_VALUE_OFF      6
424
425
426extern BOOLEAN btsnd_hcic_user_passkey_neg_reply (BD_ADDR bd_addr);
427
428#define HCIC_PARAM_SIZE_U_PKEY_NEG_REPLY 6
429
430#define HCI_USER_PASSKEY_NEG_BD_ADDR_OFF 0
431
432                                                            /* Remote OOB Data Request Reply */
433extern BOOLEAN btsnd_hcic_rem_oob_reply (BD_ADDR bd_addr, UINT8 *p_c,
434                                         UINT8 *p_r);
435
436#define HCIC_PARAM_SIZE_REM_OOB_REPLY   38
437
438#define HCI_REM_OOB_DATA_BD_ADDR_OFF    0
439#define HCI_REM_OOB_DATA_C_OFF          6
440#define HCI_REM_OOB_DATA_R_OFF          22
441
442                                                            /* Remote OOB Data Request Negative Reply */
443extern BOOLEAN btsnd_hcic_rem_oob_neg_reply (BD_ADDR bd_addr);
444
445#define HCIC_PARAM_SIZE_REM_OOB_NEG_REPLY   6
446
447#define HCI_REM_OOB_DATA_NEG_BD_ADDR_OFF    0
448
449                                                            /* Read Tx Power Level */
450extern BOOLEAN btsnd_hcic_read_inq_tx_power (void);
451
452#define HCIC_PARAM_SIZE_R_TX_POWER      0
453
454                                                            /* Read Default Erroneous Data Reporting */
455extern BOOLEAN btsnd_hcic_read_default_erroneous_data_rpt (void);
456
457#define HCIC_PARAM_SIZE_R_ERR_DATA_RPT      0
458
459#if L2CAP_NON_FLUSHABLE_PB_INCLUDED == TRUE
460extern BOOLEAN btsnd_hcic_enhanced_flush (UINT16 handle, UINT8 packet_type);
461
462#define HCIC_PARAM_SIZE_ENHANCED_FLUSH  3
463#endif
464
465
466extern BOOLEAN btsnd_hcic_send_keypress_notif (BD_ADDR bd_addr, UINT8 notif);
467
468#define HCIC_PARAM_SIZE_SEND_KEYPRESS_NOTIF    7
469
470#define HCI_SEND_KEYPRESS_NOTIF_BD_ADDR_OFF    0
471#define HCI_SEND_KEYPRESS_NOTIF_NOTIF_OFF      6
472
473/**** end of Simple Pairing Commands ****/
474
475                                                                    /* Store Current Settings */
476#define MAX_FILT_COND   (sizeof (BD_ADDR) + 1)
477
478extern BOOLEAN btsnd_hcic_set_event_filter(UINT8 filt_type,
479                                           UINT8 filt_cond_type,
480                                           UINT8 *filt_cond,
481                                           UINT8 filt_cond_len);
482
483#define HCIC_PARAM_SIZE_SET_EVT_FILTER  9
484
485#define HCI_FILT_COND_FILT_TYPE_OFF     0
486#define HCI_FILT_COND_COND_TYPE_OFF     1
487#define HCI_FILT_COND_FILT_OFF          2
488                                                                    /* Set Event Filter */
489
490                                                                /* Delete Stored Key */
491extern BOOLEAN btsnd_hcic_delete_stored_key (BD_ADDR bd_addr, BOOLEAN delete_all_flag);
492
493#define HCIC_PARAM_SIZE_DELETE_STORED_KEY        7
494
495#define HCI_DELETE_KEY_BD_ADDR_OFF      0
496#define HCI_DELETE_KEY_ALL_FLAG_OFF     6
497                                                                /* Delete Stored Key */
498
499                                                                /* Change Local Name */
500extern BOOLEAN btsnd_hcic_change_name(BD_NAME name);
501
502#define HCIC_PARAM_SIZE_CHANGE_NAME     BD_NAME_LEN
503
504#define HCI_CHANGE_NAME_NAME_OFF        0
505                                                                /* Change Local Name */
506
507
508#define HCIC_PARAM_SIZE_READ_CMD     0
509
510#define HCIC_PARAM_SIZE_WRITE_PARAM1     1
511
512#define HCIC_WRITE_PARAM1_PARAM_OFF      0
513
514#define HCIC_PARAM_SIZE_WRITE_PARAM2     2
515
516#define HCIC_WRITE_PARAM2_PARAM_OFF      0
517
518#define HCIC_PARAM_SIZE_WRITE_PARAM3     3
519
520#define HCIC_WRITE_PARAM3_PARAM_OFF      0
521
522#define HCIC_PARAM_SIZE_SET_AFH_CHANNELS    10
523
524extern BOOLEAN btsnd_hcic_write_pin_type(UINT8 type);                   /* Write PIN Type */
525extern BOOLEAN btsnd_hcic_write_auto_accept(UINT8 flag);                /* Write Auto Accept */
526extern BOOLEAN btsnd_hcic_read_name (void);                             /* Read Local Name */
527extern BOOLEAN btsnd_hcic_write_page_tout(UINT16 timeout);              /* Write Page Timout */
528extern BOOLEAN btsnd_hcic_write_scan_enable(UINT8 flag);                /* Write Scan Enable */
529extern BOOLEAN btsnd_hcic_write_pagescan_cfg(UINT16 interval,
530                                             UINT16 window);            /* Write Page Scan Activity */
531
532#define HCIC_PARAM_SIZE_WRITE_PAGESCAN_CFG  4
533
534#define HCI_SCAN_CFG_INTERVAL_OFF       0
535#define HCI_SCAN_CFG_WINDOW_OFF         2
536                                                                /* Write Page Scan Activity */
537
538                                                                /* Write Inquiry Scan Activity */
539extern BOOLEAN btsnd_hcic_write_inqscan_cfg(UINT16 interval, UINT16 window);
540
541#define HCIC_PARAM_SIZE_WRITE_INQSCAN_CFG    4
542
543#define HCI_SCAN_CFG_INTERVAL_OFF       0
544#define HCI_SCAN_CFG_WINDOW_OFF         2
545                                                                /* Write Inquiry Scan Activity */
546
547extern BOOLEAN btsnd_hcic_write_auth_enable(UINT8 flag);                 /* Write Authentication Enable */
548extern BOOLEAN btsnd_hcic_write_dev_class(DEV_CLASS dev);                /* Write Class of Device */
549extern BOOLEAN btsnd_hcic_write_voice_settings(UINT16 flags);            /* Write Voice Settings */
550
551/* Host Controller to Host flow control */
552#define HCI_HOST_FLOW_CTRL_OFF          0
553#define HCI_HOST_FLOW_CTRL_ACL_ON       1
554#define HCI_HOST_FLOW_CTRL_SCO_ON       2
555#define HCI_HOST_FLOW_CTRL_BOTH_ON      3
556
557extern BOOLEAN btsnd_hcic_write_auto_flush_tout(UINT16 handle,
558                                                UINT16 timeout);    /* Write Retransmit Timout */
559
560#define HCIC_PARAM_SIZE_WRITE_AUTO_FLUSH_TOUT    4
561
562#define HCI_FLUSH_TOUT_HANDLE_OFF       0
563#define HCI_FLUSH_TOUT_TOUT_OFF         2
564
565extern BOOLEAN btsnd_hcic_read_tx_power(UINT16 handle, UINT8 type);     /* Read Tx Power */
566
567#define HCIC_PARAM_SIZE_READ_TX_POWER    3
568
569#define HCI_READ_TX_POWER_HANDLE_OFF    0
570#define HCI_READ_TX_POWER_TYPE_OFF      2
571
572/* Read transmit power level parameter */
573#define HCI_READ_CURRENT                0x00
574#define HCI_READ_MAXIMUM                0x01
575
576extern BOOLEAN btsnd_hcic_host_num_xmitted_pkts (UINT8 num_handles,
577                                                 UINT16 *handle,
578                                                 UINT16 *num_pkts);         /* Set Host Buffer Size */
579
580#define HCIC_PARAM_SIZE_NUM_PKTS_DONE_SIZE    sizeof(btmsg_hcic_num_pkts_done_t)
581
582#define MAX_DATA_HANDLES        10
583
584#define HCI_PKTS_DONE_NUM_HANDLES_OFF   0
585#define HCI_PKTS_DONE_HANDLE_OFF        1
586#define HCI_PKTS_DONE_NUM_PKTS_OFF      3
587
588                                                                /* Write Link Supervision Timeout */
589extern BOOLEAN btsnd_hcic_write_link_super_tout(UINT8 local_controller_id, UINT16 handle, UINT16 timeout);
590
591#define HCIC_PARAM_SIZE_WRITE_LINK_SUPER_TOUT        4
592
593#define HCI_LINK_SUPER_TOUT_HANDLE_OFF  0
594#define HCI_LINK_SUPER_TOUT_TOUT_OFF    2
595                                                                /* Write Link Supervision Timeout */
596
597extern BOOLEAN btsnd_hcic_write_cur_iac_lap (UINT8 num_cur_iac,
598                                             LAP * const iac_lap);  /* Write Current IAC LAP */
599
600#define MAX_IAC_LAPS    0x40
601
602#define HCI_WRITE_IAC_LAP_NUM_OFF       0
603#define HCI_WRITE_IAC_LAP_LAP_OFF       1
604                                                                /* Write Current IAC LAP */
605
606extern BOOLEAN btsnd_hcic_get_link_quality (UINT16 handle);            /* Get Link Quality */
607extern BOOLEAN btsnd_hcic_read_rssi (UINT16 handle);                   /* Read RSSI */
608extern BOOLEAN btsnd_hcic_enable_test_mode (void);                     /* Enable Device Under Test Mode */
609extern BOOLEAN btsnd_hcic_write_pagescan_type(UINT8 type);             /* Write Page Scan Type */
610extern BOOLEAN btsnd_hcic_write_inqscan_type(UINT8 type);              /* Write Inquiry Scan Type */
611extern BOOLEAN btsnd_hcic_write_inquiry_mode(UINT8 type);              /* Write Inquiry Mode */
612
613#define HCI_DATA_HANDLE_MASK 0x0FFF
614
615#define HCID_GET_HANDLE_EVENT(p)  (UINT16)((*((UINT8 *)((p) + 1) + p->offset) + \
616                                           (*((UINT8 *)((p) + 1) + p->offset + 1) << 8)))
617
618#define HCID_GET_HANDLE(u16) (UINT16)((u16) & HCI_DATA_HANDLE_MASK)
619
620#define HCI_DATA_EVENT_MASK   3
621#define HCI_DATA_EVENT_OFFSET 12
622#define HCID_GET_EVENT(u16)   (UINT8)(((u16) >> HCI_DATA_EVENT_OFFSET) & HCI_DATA_EVENT_MASK)
623
624#define HCI_DATA_BCAST_MASK   3
625#define HCI_DATA_BCAST_OFFSET 10
626#define HCID_GET_BCAST(u16)   (UINT8)(((u16) >> HCI_DATA_BCAST_OFFSET) & HCI_DATA_BCAST_MASK)
627
628#define HCID_GET_ACL_LEN(p)     (UINT16)((*((UINT8 *)((p) + 1) + p->offset + 2) + \
629                                         (*((UINT8 *)((p) + 1) + p->offset + 3) << 8)))
630
631#define HCID_HEADER_SIZE      4
632
633#define HCID_GET_SCO_LEN(p)  (*((UINT8 *)((p) + 1) + p->offset + 2))
634
635extern void btsnd_hcic_vendor_spec_cmd (void *buffer, UINT16 opcode,
636                                        UINT8 len, UINT8 *p_data,
637                                        void *p_cmd_cplt_cback);
638
639#if (BLE_INCLUDED == TRUE)
640/********************************************************************************
641** BLE Commands
642**      Note: "local_controller_id" is for transport, not counted in HCI message size
643*********************************************************************************/
644#define HCIC_PARAM_SIZE_SET_USED_FEAT_CMD       8
645#define HCIC_PARAM_SIZE_WRITE_RANDOM_ADDR_CMD    6
646#define HCIC_PARAM_SIZE_BLE_WRITE_ADV_PARAMS    15
647#define HCIC_PARAM_SIZE_BLE_WRITE_SCAN_RSP      31
648#define HCIC_PARAM_SIZE_WRITE_ADV_ENABLE        1
649#define HCIC_PARAM_SIZE_BLE_WRITE_SCAN_PARAM    7
650#define HCIC_PARAM_SIZE_BLE_WRITE_SCAN_ENABLE   2
651#define HCIC_PARAM_SIZE_BLE_CREATE_LL_CONN      25
652#define HCIC_PARAM_SIZE_BLE_CREATE_CONN_CANCEL  0
653#define HCIC_PARAM_SIZE_CLEAR_WHITE_LIST        0
654#define HCIC_PARAM_SIZE_ADD_WHITE_LIST          7
655#define HCIC_PARAM_SIZE_REMOVE_WHITE_LIST       7
656#define HCIC_PARAM_SIZE_BLE_UPD_LL_CONN_PARAMS  14
657#define HCIC_PARAM_SIZE_SET_HOST_CHNL_CLASS     5
658#define HCIC_PARAM_SIZE_READ_CHNL_MAP         2
659#define HCIC_PARAM_SIZE_BLE_READ_REMOTE_FEAT    2
660#define HCIC_PARAM_SIZE_BLE_ENCRYPT             32
661#define HCIC_PARAM_SIZE_BLE_RAND                0
662#define HCIC_PARAM_SIZE_WRITE_LE_HOST_SUPPORTED	2
663
664#define HCIC_BLE_RAND_DI_SIZE                   8
665#define HCIC_BLE_ENCRYT_KEY_SIZE                16
666#define HCIC_PARAM_SIZE_BLE_START_ENC           (4 + HCIC_BLE_RAND_DI_SIZE + HCIC_BLE_ENCRYT_KEY_SIZE)
667#define HCIC_PARAM_SIZE_LTK_REQ_REPLY           (2 + HCIC_BLE_ENCRYT_KEY_SIZE)
668#define HCIC_PARAM_SIZE_LTK_REQ_NEG_REPLY           2
669#define HCIC_BLE_CHNL_MAP_SIZE                  5
670#define HCIC_PARAM_SIZE_BLE_WRITE_ADV_DATA      31
671
672/* ULP HCI command */
673extern BOOLEAN btsnd_hcic_ble_set_evt_mask (BT_EVENT_MASK event_mask);
674
675extern BOOLEAN btsnd_hcic_ble_read_buffer_size (void);
676
677extern BOOLEAN btsnd_hcic_ble_read_local_spt_feat (void);
678
679extern BOOLEAN btsnd_hcic_ble_set_local_used_feat (UINT8 feat_set[8]);
680
681extern BOOLEAN btsnd_hcic_ble_set_random_addr (BD_ADDR random_addr);
682
683extern BOOLEAN btsnd_hcic_ble_write_adv_params (UINT16 adv_int_min, UINT16 adv_int_max,
684                                                UINT8 adv_type, UINT8 addr_type_own,
685                                                UINT8 addr_type_dir, BD_ADDR direct_bda,
686                                                UINT8 channel_map, UINT8 scan_filter_policy);
687
688extern BOOLEAN btsnd_hcic_ble_read_adv_chnl_tx_power (void);
689
690extern BOOLEAN btsnd_hcic_ble_set_adv_data (UINT8 data_len, UINT8 *p_data);
691
692extern BOOLEAN btsnd_hcic_ble_set_scan_rsp_data (UINT8 data_len, UINT8 *p_scan_rsp);
693
694extern BOOLEAN btsnd_hcic_ble_set_adv_enable (UINT8 adv_enable);
695
696extern BOOLEAN btsnd_hcic_ble_set_scan_params (UINT8 scan_type,
697                                               UINT16 scan_int, UINT16 scan_win,
698                                               UINT8 addr_type, UINT8 scan_filter_policy);
699
700extern BOOLEAN btsnd_hcic_ble_set_scan_enable (UINT8 scan_enable, UINT8 duplicate);
701
702extern BOOLEAN btsnd_hcic_ble_create_ll_conn (UINT16 scan_int, UINT16 scan_win,
703                                              UINT8 init_filter_policy, UINT8 addr_type_peer, BD_ADDR bda_peer, UINT8 addr_type_own,
704                                              UINT16 conn_int_min, UINT16 conn_int_max, UINT16 conn_latency, UINT16 conn_timeout,
705                                              UINT16 min_ce_len, UINT16 max_ce_len);
706
707extern BOOLEAN btsnd_hcic_ble_create_conn_cancel (void);
708
709extern BOOLEAN btsnd_hcic_ble_read_white_list_size (void);
710
711extern BOOLEAN btsnd_hcic_ble_clear_white_list (void);
712
713extern BOOLEAN btsnd_hcic_ble_add_white_list (UINT8 addr_type, BD_ADDR bda);
714
715extern BOOLEAN btsnd_hcic_ble_remove_from_white_list (UINT8 addr_type, BD_ADDR bda);
716
717extern BOOLEAN btsnd_hcic_ble_upd_ll_conn_params (UINT16 handle, UINT16 conn_int_min, UINT16 conn_int_max,
718                                                  UINT16 conn_latency, UINT16 conn_timeout, UINT16 min_len, UINT16 max_len);
719
720extern BOOLEAN btsnd_hcic_ble_set_host_chnl_class (UINT8 chnl_map[HCIC_BLE_CHNL_MAP_SIZE]);
721
722extern BOOLEAN btsnd_hcic_ble_read_chnl_map (UINT16 handle);
723
724extern BOOLEAN btsnd_hcic_ble_read_remote_feat ( UINT16 handle);
725
726extern BOOLEAN btsnd_hcic_ble_encrypt (UINT8* key, UINT8 key_len, UINT8* plain_text, UINT8 pt_len, void *p_cmd_cplt_cback);
727
728extern BOOLEAN btsnd_hcic_ble_rand (void *p_cmd_cplt_cback);
729
730extern BOOLEAN btsnd_hcic_ble_start_enc ( UINT16 handle,
731                                          UINT8 rand[HCIC_BLE_RAND_DI_SIZE],
732                                          UINT16 ediv, UINT8 ltk[HCIC_BLE_ENCRYT_KEY_SIZE]);
733
734extern BOOLEAN btsnd_hcic_ble_ltk_req_reply (UINT16 handle, UINT8 ltk[HCIC_BLE_ENCRYT_KEY_SIZE]);
735
736extern BOOLEAN btsnd_hcic_ble_ltk_req_neg_reply (UINT16 handle);
737
738extern BOOLEAN btsnd_hcic_ble_read_supported_states (void);
739
740extern BOOLEAN btsnd_hcic_ble_write_host_supported (UINT8 le_host_spt, UINT8 simul_le_host_spt);
741
742extern BOOLEAN btsnd_hcic_ble_read_host_supported (void);
743
744extern BOOLEAN btsnd_hcic_ble_receiver_test(UINT8 rx_freq);
745
746extern BOOLEAN btsnd_hcic_ble_transmitter_test(UINT8 tx_freq, UINT8 test_data_len,
747                                               UINT8 payload);
748extern BOOLEAN btsnd_hcic_ble_test_end(void);
749
750#if (defined BLE_LLT_INCLUDED) && (BLE_LLT_INCLUDED == TRUE)
751
752#define HCIC_PARAM_SIZE_BLE_RC_PARAM_REQ_REPLY           14
753extern BOOLEAN btsnd_hcic_ble_rc_param_req_reply(UINT16 handle,
754                                                 UINT16 conn_int_min, UINT16 conn_int_max,
755                                                 UINT16 conn_latency, UINT16 conn_timeout,
756                                                 UINT16 min_ce_len, UINT16 max_ce_len);
757
758#define HCIC_PARAM_SIZE_BLE_RC_PARAM_REQ_NEG_REPLY       3
759extern BOOLEAN btsnd_hcic_ble_rc_param_req_neg_reply(UINT16 handle, UINT8 reason);
760
761#endif /* BLE_LLT_INCLUDED */
762
763
764#endif /* BLE_INCLUDED */
765
766#endif
767