11f504dbdSmatthias.ringwald /* 21713bceaSmatthias.ringwald * Copyright (C) 2009 by Matthias Ringwald 31713bceaSmatthias.ringwald * 41713bceaSmatthias.ringwald * Redistribution and use in source and binary forms, with or without 51713bceaSmatthias.ringwald * modification, are permitted provided that the following conditions 61713bceaSmatthias.ringwald * are met: 71713bceaSmatthias.ringwald * 81713bceaSmatthias.ringwald * 1. Redistributions of source code must retain the above copyright 91713bceaSmatthias.ringwald * notice, this list of conditions and the following disclaimer. 101713bceaSmatthias.ringwald * 2. Redistributions in binary form must reproduce the above copyright 111713bceaSmatthias.ringwald * notice, this list of conditions and the following disclaimer in the 121713bceaSmatthias.ringwald * documentation and/or other materials provided with the distribution. 131713bceaSmatthias.ringwald * 3. Neither the name of the copyright holders nor the names of 141713bceaSmatthias.ringwald * contributors may be used to endorse or promote products derived 151713bceaSmatthias.ringwald * from this software without specific prior written permission. 161713bceaSmatthias.ringwald * 171713bceaSmatthias.ringwald * THIS SOFTWARE IS PROVIDED BY MATTHIAS RINGWALD AND CONTRIBUTORS 181713bceaSmatthias.ringwald * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 191713bceaSmatthias.ringwald * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 201713bceaSmatthias.ringwald * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS 211713bceaSmatthias.ringwald * RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 221713bceaSmatthias.ringwald * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 231713bceaSmatthias.ringwald * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 241713bceaSmatthias.ringwald * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 251713bceaSmatthias.ringwald * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 261713bceaSmatthias.ringwald * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF 271713bceaSmatthias.ringwald * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 281713bceaSmatthias.ringwald * SUCH DAMAGE. 291713bceaSmatthias.ringwald * 301713bceaSmatthias.ringwald */ 311713bceaSmatthias.ringwald 321713bceaSmatthias.ringwald /* 331f504dbdSmatthias.ringwald * hci.h 341f504dbdSmatthias.ringwald * 351f504dbdSmatthias.ringwald * Created by Matthias Ringwald on 4/29/09. 361f504dbdSmatthias.ringwald * 371f504dbdSmatthias.ringwald */ 381f504dbdSmatthias.ringwald 391f504dbdSmatthias.ringwald #pragma once 401f504dbdSmatthias.ringwald 4123053b9eSmatthias.ringwald #include <btstack/hci_cmds.h> 4223053b9eSmatthias.ringwald #include <btstack/utils.h> 43ba681a6cSmatthias.ringwald #include "hci_transport.h" 44ba681a6cSmatthias.ringwald #include "bt_control.h" 45ba681a6cSmatthias.ringwald 4693b8dc03Smatthias.ringwald #include <stdint.h> 4702ea9861Smatthias.ringwald #include <stdlib.h> 481cd208adSmatthias.ringwald #include <stdarg.h> 4993b8dc03Smatthias.ringwald 5080d52d6bSmatthias.ringwald // packet header lenghts 5180d52d6bSmatthias.ringwald #define HCI_CMD_DATA_PKT_HDR 0x03 5280d52d6bSmatthias.ringwald #define HCI_ACL_DATA_PKT_HDR 0x04 5380d52d6bSmatthias.ringwald #define HCI_SCO_DATA_PKT_HDR 0x03 5480d52d6bSmatthias.ringwald #define HCI_EVENT_PKT_HDR 0x02 5580d52d6bSmatthias.ringwald 56945627e4Smatthias.ringwald // OGFs 57945627e4Smatthias.ringwald #define OGF_LINK_CONTROL 0x01 58945627e4Smatthias.ringwald #define OGF_CONTROLLER_BASEBAND 0x03 59945627e4Smatthias.ringwald #define OGF_INFORMATIONAL_PARAMETERS 0x04 60945627e4Smatthias.ringwald #define OGF_BTSTACK 0x3d 61945627e4Smatthias.ringwald #define OGF_VENDOR 0x3f 6280d52d6bSmatthias.ringwald 6380d52d6bSmatthias.ringwald // cmds for BTstack 6480d52d6bSmatthias.ringwald // get state: @returns HCI_STATE 6580d52d6bSmatthias.ringwald #define BTSTACK_GET_STATE 0x01 6680d52d6bSmatthias.ringwald 6780d52d6bSmatthias.ringwald // set power mode: @param HCI_POWER_MODE 6880d52d6bSmatthias.ringwald #define BTSTACK_SET_POWER_MODE 0x02 6980d52d6bSmatthias.ringwald 7080d52d6bSmatthias.ringwald // set capture mode: @param on 7180d52d6bSmatthias.ringwald #define BTSTACK_SET_ACL_CAPTURE_MODE 0x03 7280d52d6bSmatthias.ringwald 7380d52d6bSmatthias.ringwald // create l2cap channel: @param bd_addr(48), psm (16) 7480d52d6bSmatthias.ringwald #define L2CAP_CREATE_CHANNEL 0x20 7580d52d6bSmatthias.ringwald 7680d52d6bSmatthias.ringwald // disconnect l2cap disconnect, @param channel(16), reason(8) 7780d52d6bSmatthias.ringwald #define L2CAP_DISCONNECT 0x21 7880d52d6bSmatthias.ringwald 7980d52d6bSmatthias.ringwald // 8080d52d6bSmatthias.ringwald #define IS_COMMAND(packet, command) (READ_BT_16(packet,0) == command.opcode) 8180d52d6bSmatthias.ringwald 82945627e4Smatthias.ringwald // data: event(8) 83945627e4Smatthias.ringwald #define DAEMON_EVENT_CONNECTION_CLOSED 0x70 84945627e4Smatthias.ringwald 85945627e4Smatthias.ringwald // data: event(8), nr_connections(8) 86945627e4Smatthias.ringwald #define DAEMON_NR_CONNECTIONS_CHANGED 0x71 87945627e4Smatthias.ringwald 88945627e4Smatthias.ringwald 8906b35ec0Smatthias.ringwald /** 9006b35ec0Smatthias.ringwald * Connection State 9106b35ec0Smatthias.ringwald */ 92c01e9cbdSmatthias.ringwald typedef enum { 93c01e9cbdSmatthias.ringwald SEND_NEGATIVE_LINK_KEY_REQUEST = 1 << 0, 94c01e9cbdSmatthias.ringwald SEND_PIN_CODE_RESPONSE = 1 << 1 95c01e9cbdSmatthias.ringwald } hci_connection_flags_t; 96c01e9cbdSmatthias.ringwald 97c8e4258aSmatthias.ringwald typedef enum { 98c8e4258aSmatthias.ringwald SENT_CREATE_CONNECTION = 1, 99c8e4258aSmatthias.ringwald RECEIVED_CONNECTION_REQUEST, 100c8e4258aSmatthias.ringwald ACCEPTED_CONNECTION_REQUEST, 101c8e4258aSmatthias.ringwald REJECTED_CONNECTION_REQUEST, 102c8e4258aSmatthias.ringwald OPEN, 103c8e4258aSmatthias.ringwald SENT_DISCONNECT 104c8e4258aSmatthias.ringwald } CONNECTION_STATE; 105c8e4258aSmatthias.ringwald 10643bfb1bdSmatthias.ringwald typedef enum { 10743bfb1bdSmatthias.ringwald BLUETOOTH_OFF = 1, 10843bfb1bdSmatthias.ringwald BLUETOOTH_ON, 10943bfb1bdSmatthias.ringwald BLUETOOTH_ACTIVE 11043bfb1bdSmatthias.ringwald } BLUETOOTH_STATE; 11143bfb1bdSmatthias.ringwald 112c8e4258aSmatthias.ringwald typedef struct { 11306b35ec0Smatthias.ringwald // linked list - assert: first field 11406b35ec0Smatthias.ringwald linked_item_t item; 115c01e9cbdSmatthias.ringwald 116c01e9cbdSmatthias.ringwald // remote side 11716833f0aSmatthias.ringwald bd_addr_t address; 11806b35ec0Smatthias.ringwald 11906b35ec0Smatthias.ringwald // module handle 12016833f0aSmatthias.ringwald hci_con_handle_t con_handle; 121c01e9cbdSmatthias.ringwald 122c8e4258aSmatthias.ringwald // state 123c8e4258aSmatthias.ringwald CONNECTION_STATE state; 124c8e4258aSmatthias.ringwald 12506b35ec0Smatthias.ringwald // errands 126c01e9cbdSmatthias.ringwald hci_connection_flags_t flags; 127c8e4258aSmatthias.ringwald 128ee091cf1Smatthias.ringwald // timer 129*981eb02eSmatthias.ringwald timer_source_t timeout; 130ee091cf1Smatthias.ringwald struct timeval timestamp; 131ee091cf1Smatthias.ringwald 13216833f0aSmatthias.ringwald } hci_connection_t; 13316833f0aSmatthias.ringwald 13406b35ec0Smatthias.ringwald /** 13506b35ec0Smatthias.ringwald * main data structure 13606b35ec0Smatthias.ringwald */ 13716833f0aSmatthias.ringwald typedef struct { 13806b35ec0Smatthias.ringwald // transport component with configuration 13916833f0aSmatthias.ringwald hci_transport_t * hci_transport; 14011e23e5fSmatthias.ringwald void * config; 14111e23e5fSmatthias.ringwald 14206b35ec0Smatthias.ringwald // hardware power controller 14306b35ec0Smatthias.ringwald bt_control_t * control; 14406b35ec0Smatthias.ringwald 14506b35ec0Smatthias.ringwald // list of existing baseband connections 146fe1ed1b8Smatthias.ringwald linked_list_t connections; 14716833f0aSmatthias.ringwald 14806b35ec0Smatthias.ringwald // single buffer for HCI Command assembly 14906b35ec0Smatthias.ringwald uint8_t * hci_cmd_buffer; 15006b35ec0Smatthias.ringwald 15116833f0aSmatthias.ringwald /* host to controller flow control */ 15216833f0aSmatthias.ringwald uint8_t num_cmd_packets; 15316833f0aSmatthias.ringwald uint8_t num_acl_packets; 15416833f0aSmatthias.ringwald 15516833f0aSmatthias.ringwald /* callback to L2CAP layer */ 1561cd208adSmatthias.ringwald void (*event_packet_handler)(uint8_t *packet, uint16_t size); 1571cd208adSmatthias.ringwald void (*acl_packet_handler) (uint8_t *packet, uint16_t size); 15816833f0aSmatthias.ringwald 1593429f56bSmatthias.ringwald /* hci state machine */ 1603429f56bSmatthias.ringwald HCI_STATE state; 1613429f56bSmatthias.ringwald uint8_t substate; 1623429f56bSmatthias.ringwald uint8_t cmds_ready; 1633429f56bSmatthias.ringwald 16416833f0aSmatthias.ringwald } hci_stack_t; 16516833f0aSmatthias.ringwald 166945627e4Smatthias.ringwald // create and send hci command packets based on a template and a list of parameters 167945627e4Smatthias.ringwald uint16_t hci_create_cmd(uint8_t *hci_cmd_buffer, hci_cmd_t *cmd, ...); 168945627e4Smatthias.ringwald uint16_t hci_create_cmd_internal(uint8_t *hci_cmd_buffer, hci_cmd_t *cmd, va_list argptr); 169945627e4Smatthias.ringwald 170475c8125Smatthias.ringwald // set up HCI 17111e23e5fSmatthias.ringwald void hci_init(hci_transport_t *transport, void *config, bt_control_t *control); 172475c8125Smatthias.ringwald 1731cd208adSmatthias.ringwald void hci_register_event_packet_handler(void (*handler)(uint8_t *packet, uint16_t size)); 17416833f0aSmatthias.ringwald 1751cd208adSmatthias.ringwald void hci_register_acl_packet_handler (void (*handler)(uint8_t *packet, uint16_t size)); 17616833f0aSmatthias.ringwald 177475c8125Smatthias.ringwald // power control 178475c8125Smatthias.ringwald int hci_power_control(HCI_POWER_MODE mode); 179475c8125Smatthias.ringwald 1803429f56bSmatthias.ringwald /** 181c8e4258aSmatthias.ringwald * run the hci control loop once 1823429f56bSmatthias.ringwald */ 18306b35ec0Smatthias.ringwald void hci_run(); 1841f504dbdSmatthias.ringwald 1851cd208adSmatthias.ringwald // create and send hci command packets based on a template and a list of parameters 18602ea9861Smatthias.ringwald int hci_send_cmd(hci_cmd_t *cmd, ...); 187d8905019Smatthias.ringwald 188d8905019Smatthias.ringwald // send complete CMD packet 18949857181Smatthias.ringwald int hci_send_cmd_packet(uint8_t *packet, int size); 190554588a5Smatthias.ringwald 19143625864Smatthias.ringwald // send ACL packet 19243625864Smatthias.ringwald int hci_send_acl_packet(uint8_t *packet, int size); 19306b35ec0Smatthias.ringwald 19406b35ec0Smatthias.ringwald // 1951e6aba47Smatthias.ringwald void hci_emit_state(); 196c8e4258aSmatthias.ringwald void hci_emit_connection_complete(hci_connection_t *conn); 197ee091cf1Smatthias.ringwald void hci_emit_l2cap_check_timeout(hci_connection_t *conn); 19843bfb1bdSmatthias.ringwald void hci_emit_nr_connections_changed(); 199038bc64cSmatthias.ringwald void hci_emit_hci_open_failed(); 200