/* * Copyright (C) 2014 BlueKitchen GmbH * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the copyright holders nor the names of * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * 4. Any redistribution, use, or modification is done solely for * personal benefit and not for any commercial purpose or for * monetary gain. * * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS * RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * Please inquire about commercial licensing options at * contact@bluekitchen-gmbh.com * */ #define __BTSTACK_FILE__ "hci_transport_h2_libusb.c" /* * hci_transport_usb.c * * HCI Transport API implementation for USB * * Created by Matthias Ringwald on 7/5/09. */ // Interface Number - Alternate Setting - suggested Endpoint Address - Endpoint Type - Suggested Max Packet Size // HCI Commands 0 0 0x00 Control 8/16/32/64 // HCI Events 0 0 0x81 Interrupt (IN) 16 // ACL Data 0 0 0x82 Bulk (IN) 32/64 // ACL Data 0 0 0x02 Bulk (OUT) 32/64 // SCO Data 0 0 0x83 Isochronous (IN) // SCO Data 0 0 0x03 Isochronous (Out) #include #include #include #include /* UNIX standard function definitions */ #include #include #include "btstack_config.h" #include "btstack_debug.h" #include "hci.h" #include "hci_transport.h" #if (USB_VENDOR_ID != 0) && (USB_PRODUCT_ID != 0) #define HAVE_USB_VENDOR_ID_AND_PRODUCT_ID #endif #define ACL_IN_BUFFER_COUNT 3 #define EVENT_IN_BUFFER_COUNT 3 #define SCO_IN_BUFFER_COUNT 10 #define ASYNC_POLLING_INTERVAL_MS 1 // // Bluetooth USB Transport Alternate Settings: // // 0: No active voice channels (for USB compliance) // 1: One 8 kHz voice channel with 8-bit encoding // 2: Two 8 kHz voice channels with 8-bit encoding or one 8 kHz voice channel with 16-bit encoding // 3: Three 8 kHz voice channels with 8-bit encoding // 4: Two 8 kHz voice channels with 16-bit encoding or one 16 kHz voice channel with 16-bit encoding // 5: Three 8 kHz voice channels with 16-bit encoding or one 8 kHz voice channel with 16-bit encoding and one 16 kHz voice channel with 16-bit encoding // --> support only a single SCO connection // #define ALT_SETTING (1) // alt setting for 1-3 connections and 8/16 bit static const int alt_setting_8_bit[] = {1,2,3}; static const int alt_setting_16_bit[] = {2,4,5}; // for ALT_SETTING >= 1 and 8-bit channel, we need the following isochronous packets // One complete SCO packet with 24 frames every 3 frames (== 3 ms) #define NUM_ISO_PACKETS (3) const uint16_t iso_packet_size_for_alt_setting[] = { 0, 9, 17, 25, 33, 49, 63, }; // 49 bytes is the max usb packet size for alternate setting 5 (Three 8 kHz 16-bit channels or one 8 kHz 16-bit channel and one 16 kHz 16-bit channel) // note: alt setting 6 has max packet size of 63 every 7.5 ms = 472.5 bytes / HCI packet, while max SCO packet has 255 byte payload #define SCO_PACKET_SIZE (49 * NUM_ISO_PACKETS) // Outgoing SCO packet queue // simplified ring buffer implementation #define SCO_OUT_BUFFER_COUNT (8) #define SCO_OUT_BUFFER_SIZE (SCO_OUT_BUFFER_COUNT * SCO_PACKET_SIZE) // seems to be the max depth for USB 3 #define USB_MAX_PATH_LEN 7 // prototypes static void dummy_handler(uint8_t packet_type, uint8_t *packet, uint16_t size); static int usb_close(void); typedef enum { LIB_USB_CLOSED = 0, LIB_USB_OPENED, LIB_USB_DEVICE_OPENDED, LIB_USB_INTERFACE_CLAIMED, LIB_USB_TRANSFERS_ALLOCATED } libusb_state_t; // SCO packet state machine typedef enum { H2_W4_SCO_HEADER = 1, H2_W4_PAYLOAD, } H2_SCO_STATE; static libusb_state_t libusb_state = LIB_USB_CLOSED; // single instance static hci_transport_t * hci_transport_usb = NULL; static void (*packet_handler)(uint8_t packet_type, uint8_t *packet, uint16_t size) = dummy_handler; // libusb #ifndef HAVE_USB_VENDOR_ID_AND_PRODUCT_ID static struct libusb_device_descriptor desc; static libusb_device * dev; #endif static libusb_device_handle * handle; static struct libusb_transfer *command_out_transfer; static struct libusb_transfer *acl_out_transfer; static struct libusb_transfer *event_in_transfer[EVENT_IN_BUFFER_COUNT]; static struct libusb_transfer *acl_in_transfer[ACL_IN_BUFFER_COUNT]; #ifdef ENABLE_SCO_OVER_HCI #ifdef _WIN32 #error "SCO not working on Win32 (Windows 8, libusb 1.0.19, Zadic WinUSB), please uncomment ENABLE_SCO_OVER_HCI in btstack-config.h for now" #endif // incoming SCO static H2_SCO_STATE sco_state; static uint8_t sco_buffer[255+3 + SCO_PACKET_SIZE]; static uint16_t sco_read_pos; static uint16_t sco_bytes_to_read; static struct libusb_transfer *sco_in_transfer[SCO_IN_BUFFER_COUNT]; static uint8_t hci_sco_in_buffer[SCO_IN_BUFFER_COUNT][SCO_PACKET_SIZE]; // outgoing SCO static uint8_t sco_out_ring_buffer[SCO_OUT_BUFFER_SIZE]; static int sco_ring_write; // packet idx static int sco_out_transfers_active; static struct libusb_transfer *sco_out_transfers[SCO_OUT_BUFFER_COUNT]; static int sco_out_transfers_in_flight[SCO_OUT_BUFFER_COUNT]; // pause/resume static uint16_t sco_voice_setting; static int sco_num_connections; static int sco_shutdown; // dynamic SCO configuration static uint16_t iso_packet_size; #endif // outgoing buffer for HCI Command packets static uint8_t hci_cmd_buffer[3 + 256 + LIBUSB_CONTROL_SETUP_SIZE]; // incoming buffer for HCI Events and ACL Packets static uint8_t hci_event_in_buffer[EVENT_IN_BUFFER_COUNT][HCI_ACL_BUFFER_SIZE]; // bigger than largest packet static uint8_t hci_acl_in_buffer[ACL_IN_BUFFER_COUNT][HCI_INCOMING_PRE_BUFFER_SIZE + HCI_ACL_BUFFER_SIZE]; // For (ab)use as a linked list of received packets static struct libusb_transfer *handle_packet; static int doing_pollfds; static int num_pollfds; static btstack_data_source_t * pollfd_data_sources; static btstack_timer_source_t usb_timer; static int usb_timer_active; static int usb_acl_out_active = 0; static int usb_command_active = 0; // endpoint addresses static int event_in_addr; static int acl_in_addr; static int acl_out_addr; static int sco_in_addr; static int sco_out_addr; // device path static int usb_path_len; static uint8_t usb_path[USB_MAX_PATH_LEN]; #ifdef ENABLE_SCO_OVER_HCI static void sco_ring_init(void){ sco_ring_write = 0; sco_out_transfers_active = 0; } static int sco_ring_have_space(void){ return sco_out_transfers_active < SCO_OUT_BUFFER_COUNT; } #endif void hci_transport_usb_set_path(int len, uint8_t * port_numbers){ if (len > USB_MAX_PATH_LEN || !port_numbers){ log_error("hci_transport_usb_set_path: len or port numbers invalid"); return; } usb_path_len = len; memcpy(usb_path, port_numbers, len); } // static void queue_transfer(struct libusb_transfer *transfer){ // log_info("queue_transfer %p, endpoint %x size %u", transfer, transfer->endpoint, transfer->actual_length); transfer->user_data = NULL; // insert first element if (handle_packet == NULL) { handle_packet = transfer; return; } // Walk to end of list and add current packet there struct libusb_transfer *temp = handle_packet; while (temp->user_data) { temp = (struct libusb_transfer*)temp->user_data; } temp->user_data = transfer; } LIBUSB_CALL static void async_callback(struct libusb_transfer *transfer){ int c; // identify and free transfers as part of shutdown #ifdef ENABLE_SCO_OVER_HCI if (libusb_state != LIB_USB_TRANSFERS_ALLOCATED || sco_shutdown) { for (c=0;cendpoint, transfer->status, transfer->actual_length ); if (transfer->status == LIBUSB_TRANSFER_COMPLETED) { queue_transfer(transfer); } else if (transfer->status == LIBUSB_TRANSFER_STALL){ log_info("-> Transfer stalled, trying again"); r = libusb_clear_halt(handle, transfer->endpoint); if (r) { log_error("Error rclearing halt %d", r); } r = libusb_submit_transfer(transfer); if (r) { log_error("Error re-submitting transfer %d", r); } } else { log_info("async_callback. not data -> resubmit transfer, endpoint %x, status %x, length %u", transfer->endpoint, transfer->status, transfer->actual_length); // No usable data, just resubmit packet r = libusb_submit_transfer(transfer); if (r) { log_error("Error re-submitting transfer %d", r); } } // log_info("end async_callback"); } #ifdef ENABLE_SCO_OVER_HCI static int usb_send_sco_packet(uint8_t *packet, int size){ int r; if (libusb_state != LIB_USB_TRANSFERS_ALLOCATED) return -1; // log_info("usb_send_acl_packet enter, size %u", size); // store packet in free slot int tranfer_index = sco_ring_write; uint8_t * data = &sco_out_ring_buffer[tranfer_index * SCO_PACKET_SIZE]; memcpy(data, packet, size); // setup transfer // log_info("usb_send_sco_packet: size %u, max size %u, iso packet size %u", size, NUM_ISO_PACKETS * iso_packet_size, iso_packet_size); struct libusb_transfer * sco_transfer = sco_out_transfers[tranfer_index]; libusb_fill_iso_transfer(sco_transfer, handle, sco_out_addr, data, NUM_ISO_PACKETS * iso_packet_size, NUM_ISO_PACKETS, async_callback, NULL, 0); libusb_set_iso_packet_lengths(sco_transfer, iso_packet_size); r = libusb_submit_transfer(sco_transfer); if (r < 0) { log_error("Error submitting sco transfer, %d", r); return -1; } // mark slot as full sco_ring_write++; if (sco_ring_write == SCO_OUT_BUFFER_COUNT){ sco_ring_write = 0; } sco_out_transfers_active++; sco_out_transfers_in_flight[tranfer_index] = 1; // log_info("H2: queued packet at index %u, num active %u", tranfer_index, sco_out_transfers_active); // notify upper stack that provided buffer can be used again uint8_t event[] = { HCI_EVENT_TRANSPORT_PACKET_SENT, 0}; packet_handler(HCI_EVENT_PACKET, &event[0], sizeof(event)); // and if we have more space for SCO packets if (sco_ring_have_space()) { uint8_t event_sco[] = { HCI_EVENT_SCO_CAN_SEND_NOW, 0}; packet_handler(HCI_EVENT_PACKET, &event_sco[0], sizeof(event_sco)); } return 0; } static void sco_state_machine_init(void){ sco_state = H2_W4_SCO_HEADER; sco_read_pos = 0; sco_bytes_to_read = 3; } static void handle_isochronous_data(uint8_t * buffer, uint16_t size){ while (size){ if (size < sco_bytes_to_read){ // just store incomplete data memcpy(&sco_buffer[sco_read_pos], buffer, size); sco_read_pos += size; sco_bytes_to_read -= size; return; } // copy requested data memcpy(&sco_buffer[sco_read_pos], buffer, sco_bytes_to_read); sco_read_pos += sco_bytes_to_read; buffer += sco_bytes_to_read; size -= sco_bytes_to_read; // chunk read successfully, next action switch (sco_state){ case H2_W4_SCO_HEADER: sco_state = H2_W4_PAYLOAD; sco_bytes_to_read = sco_buffer[2]; break; case H2_W4_PAYLOAD: // packet complete packet_handler(HCI_SCO_DATA_PACKET, sco_buffer, sco_read_pos); sco_state_machine_init(); break; } } } #endif static void handle_completed_transfer(struct libusb_transfer *transfer){ int resubmit = 0; int signal_done = 0; if (transfer->endpoint == event_in_addr) { packet_handler(HCI_EVENT_PACKET, transfer-> buffer, transfer->actual_length); resubmit = 1; } else if (transfer->endpoint == acl_in_addr) { // log_info("-> acl"); packet_handler(HCI_ACL_DATA_PACKET, transfer-> buffer, transfer->actual_length); resubmit = 1; } else if (transfer->endpoint == 0){ // log_info("command done, size %u", transfer->actual_length); usb_command_active = 0; signal_done = 1; } else if (transfer->endpoint == acl_out_addr){ // log_info("acl out done, size %u", transfer->actual_length); usb_acl_out_active = 0; signal_done = 1; #ifdef ENABLE_SCO_OVER_HCI } else if (transfer->endpoint == sco_in_addr) { // log_info("handle_completed_transfer for SCO IN! num packets %u", transfer->NUM_ISO_PACKETS); int i; for (i = 0; i < transfer->num_iso_packets; i++) { struct libusb_iso_packet_descriptor *pack = &transfer->iso_packet_desc[i]; if (pack->status != LIBUSB_TRANSFER_COMPLETED) { log_error("Error: pack %u status %d\n", i, pack->status); continue; } if (!pack->actual_length) continue; uint8_t * data = libusb_get_iso_packet_buffer_simple(transfer, i); // printf_hexdump(data, pack->actual_length); // log_info("handle_isochronous_data,size %u/%u", pack->length, pack->actual_length); handle_isochronous_data(data, pack->actual_length); } resubmit = 1; } else if (transfer->endpoint == sco_out_addr){ int i; for (i = 0; i < transfer->num_iso_packets; i++) { struct libusb_iso_packet_descriptor *pack = &transfer->iso_packet_desc[i]; if (pack->status != LIBUSB_TRANSFER_COMPLETED) { log_error("Error: pack %u status %d\n", i, pack->status); } } // log_info("sco out done, {{ %u/%u (%x)}, { %u/%u (%x)}, { %u/%u (%x)}}", // transfer->iso_packet_desc[0].actual_length, transfer->iso_packet_desc[0].length, transfer->iso_packet_desc[0].status, // transfer->iso_packet_desc[1].actual_length, transfer->iso_packet_desc[1].length, transfer->iso_packet_desc[1].status, // transfer->iso_packet_desc[2].actual_length, transfer->iso_packet_desc[2].length, transfer->iso_packet_desc[2].status); // notify upper layer if there's space for new SCO packets if (sco_ring_have_space()) { uint8_t event[] = { HCI_EVENT_SCO_CAN_SEND_NOW, 0}; packet_handler(HCI_EVENT_PACKET, &event[0], sizeof(event)); } // decrease tab sco_out_transfers_active--; // log_info("H2: sco out complete, num active num active %u", sco_out_transfers_active); #endif } else { log_info("usb_process_ds endpoint unknown %x", transfer->endpoint); } if (signal_done){ // notify upper stack that provided buffer can be used again uint8_t event[] = { HCI_EVENT_TRANSPORT_PACKET_SENT, 0}; packet_handler(HCI_EVENT_PACKET, &event[0], sizeof(event)); } if (libusb_state != LIB_USB_TRANSFERS_ALLOCATED) return; if (resubmit){ // Re-submit transfer transfer->user_data = NULL; int r = libusb_submit_transfer(transfer); if (r) { log_error("Error re-submitting transfer %d", r); } } } static void usb_process_ds(btstack_data_source_t *ds, btstack_data_source_callback_type_t callback_type) { UNUSED(ds); UNUSED(callback_type); if (libusb_state != LIB_USB_TRANSFERS_ALLOCATED) return; // log_info("begin usb_process_ds"); // always handling an event as we're called when data is ready struct timeval tv; memset(&tv, 0, sizeof(struct timeval)); libusb_handle_events_timeout(NULL, &tv); // Handle any packet in the order that they were received while (handle_packet) { // log_info("handle packet %p, endpoint %x, status %x", handle_packet, handle_packet->endpoint, handle_packet->status); void * next = handle_packet->user_data; handle_completed_transfer(handle_packet); // handle case where libusb_close might be called by hci packet handler if (libusb_state != LIB_USB_TRANSFERS_ALLOCATED) return; // Move to next in the list of packets to handle if (next) { handle_packet = (struct libusb_transfer*)next; } else { handle_packet = NULL; } } // log_info("end usb_process_ds"); } static void usb_process_ts(btstack_timer_source_t *timer) { UNUSED(timer); // log_info("in usb_process_ts"); // timer is deactive, when timer callback gets called usb_timer_active = 0; if (libusb_state != LIB_USB_TRANSFERS_ALLOCATED) return; // actually handled the packet in the pollfds function usb_process_ds((struct btstack_data_source *) NULL, DATA_SOURCE_CALLBACK_READ); // Get the amount of time until next event is due long msec = ASYNC_POLLING_INTERVAL_MS; // Activate timer btstack_run_loop_set_timer(&usb_timer, msec); btstack_run_loop_add_timer(&usb_timer); usb_timer_active = 1; return; } #ifndef HAVE_USB_VENDOR_ID_AND_PRODUCT_ID // list of known devices, using VendorID/ProductID tuples static const uint16_t known_bt_devices[] = { // DeLOCK Bluetooth 4.0 0x0a5c, 0x21e8, // Asus BT400 0x0b05, 0x17cb, }; static int num_known_devices = sizeof(known_bt_devices) / sizeof(uint16_t) / 2; static int is_known_bt_device(uint16_t vendor_id, uint16_t product_id){ int i; for (i=0; ibNumInterfaces; log_info("active configuration has %u interfaces", num_interfaces); int i; for (i = 0; i < num_interfaces ; i++){ const struct libusb_interface *interface = &config_descriptor->interface[i]; const struct libusb_interface_descriptor * interface_descriptor = interface->altsetting; log_info("interface %u: %u endpoints", i, interface_descriptor->bNumEndpoints); const struct libusb_endpoint_descriptor *endpoint = interface_descriptor->endpoint; for (r=0;rbNumEndpoints;r++,endpoint++){ log_info("- endpoint %x, attributes %x", endpoint->bEndpointAddress, endpoint->bmAttributes); switch (endpoint->bmAttributes & 0x3){ case LIBUSB_TRANSFER_TYPE_INTERRUPT: if (event_in_addr) continue; event_in_addr = endpoint->bEndpointAddress; log_info("-> using 0x%2.2X for HCI Events", event_in_addr); break; case LIBUSB_TRANSFER_TYPE_BULK: if (endpoint->bEndpointAddress & 0x80) { if (acl_in_addr) continue; acl_in_addr = endpoint->bEndpointAddress; log_info("-> using 0x%2.2X for ACL Data In", acl_in_addr); } else { if (acl_out_addr) continue; acl_out_addr = endpoint->bEndpointAddress; log_info("-> using 0x%2.2X for ACL Data Out", acl_out_addr); } break; case LIBUSB_TRANSFER_TYPE_ISOCHRONOUS: if (endpoint->bEndpointAddress & 0x80) { if (sco_in_addr) continue; sco_in_addr = endpoint->bEndpointAddress; log_info("-> using 0x%2.2X for SCO Data In", sco_in_addr); } else { if (sco_out_addr) continue; sco_out_addr = endpoint->bEndpointAddress; log_info("-> using 0x%2.2X for SCO Data Out", sco_out_addr); } break; default: break; } } } libusb_free_config_descriptor(config_descriptor); } // returns index of found device or -1 static int scan_for_bt_device(libusb_device **devs, int start_index) { int i; for (i = start_index; devs[i] ; i++){ dev = devs[i]; int r = libusb_get_device_descriptor(dev, &desc); if (r < 0) { log_error("failed to get device descriptor"); return 0; } log_info("%04x:%04x (bus %d, device %d) - class %x subclass %x protocol %x ", desc.idVendor, desc.idProduct, libusb_get_bus_number(dev), libusb_get_device_address(dev), desc.bDeviceClass, desc.bDeviceSubClass, desc.bDeviceProtocol); // Detect USB Dongle based Class, Subclass, and Protocol // The class code (bDeviceClass) is 0xE0 – Wireless Controller. // The SubClass code (bDeviceSubClass) is 0x01 – RF Controller. // The Protocol code (bDeviceProtocol) is 0x01 – Bluetooth programming. // if (desc.bDeviceClass == 0xe0 && desc.bDeviceSubClass == 0x01 && desc.bDeviceProtocol == 0x01){ if (desc.bDeviceClass == 0xE0 && desc.bDeviceSubClass == 0x01 && desc.bDeviceProtocol == 0x01) { return i; } // Detect USB Dongle based on whitelist if (is_known_bt_device(desc.idVendor, desc.idProduct)) { return i; } } return -1; } #endif static int prepare_device(libusb_device_handle * aHandle){ // print device path uint8_t port_numbers[USB_MAX_PATH_LEN]; libusb_device * device = libusb_get_device(aHandle); int path_len = libusb_get_port_numbers(device, port_numbers, USB_MAX_PATH_LEN); printf("USB Path: "); int i; for (i=0;ifd); btstack_run_loop_set_data_source_handler(ds, &usb_process_ds); btstack_run_loop_enable_data_source_callbacks(ds, DATA_SOURCE_CALLBACK_READ); btstack_run_loop_add_data_source(ds); log_info("%u: %p fd: %u, events %x", r, pollfd[r], pollfd[r]->fd, pollfd[r]->events); } free(pollfd); } else { log_info("Async using timers:"); usb_timer.process = usb_process_ts; btstack_run_loop_set_timer(&usb_timer, ASYNC_POLLING_INTERVAL_MS); btstack_run_loop_add_timer(&usb_timer); usb_timer_active = 1; } return 0; } static int usb_close(void){ int c; switch (libusb_state){ case LIB_USB_CLOSED: break; case LIB_USB_TRANSFERS_ALLOCATED: libusb_state = LIB_USB_INTERFACE_CLAIMED; if(usb_timer_active) { btstack_run_loop_remove_timer(&usb_timer); usb_timer_active = 0; } if (doing_pollfds){ int r; for (r = 0 ; r < num_pollfds ; r++) { btstack_data_source_t *ds = &pollfd_data_sources[r]; btstack_run_loop_remove_data_source(ds); } free(pollfd_data_sources); pollfd_data_sources = NULL; num_pollfds = 0; doing_pollfds = 0; } case LIB_USB_INTERFACE_CLAIMED: // Cancel all transfers, ignore warnings for this libusb_set_debug(NULL, LIBUSB_LOG_LEVEL_ERROR); for (c = 0 ; c < EVENT_IN_BUFFER_COUNT ; c++) { libusb_cancel_transfer(event_in_transfer[c]); } for (c = 0 ; c < ACL_IN_BUFFER_COUNT ; c++) { libusb_cancel_transfer(acl_in_transfer[c]); } #ifdef ENABLE_SCO_OVER_HCI for (c = 0 ; c < SCO_IN_BUFFER_COUNT ; c++) { libusb_cancel_transfer(sco_in_transfer[c]); } for (c = 0; c < SCO_OUT_BUFFER_COUNT ; c++){ if (sco_out_transfers_in_flight[c]) { libusb_cancel_transfer(sco_out_transfers[c]); } else { libusb_free_transfer(sco_out_transfers[c]); sco_out_transfers[c] = 0; } } #endif libusb_set_debug(NULL, LIBUSB_LOG_LEVEL_WARNING); // wait until all transfers are completed int completed = 0; while (!completed){ struct timeval tv; memset(&tv, 0, sizeof(struct timeval)); libusb_handle_events_timeout(NULL, &tv); // check if all done completed = 1; for (c=0;cflags = LIBUSB_TRANSFER_FREE_BUFFER; // update stata before submitting transfer usb_command_active = 1; // submit transfer r = libusb_submit_transfer(command_out_transfer); if (r < 0) { usb_command_active = 0; log_error("Error submitting cmd transfer %d", r); return -1; } return 0; } static int usb_send_acl_packet(uint8_t *packet, int size){ int r; if (libusb_state != LIB_USB_TRANSFERS_ALLOCATED) return -1; // log_info("usb_send_acl_packet enter, size %u", size); // prepare transfer int completed = 0; libusb_fill_bulk_transfer(acl_out_transfer, handle, acl_out_addr, packet, size, async_callback, &completed, 0); acl_out_transfer->type = LIBUSB_TRANSFER_TYPE_BULK; // update stata before submitting transfer usb_acl_out_active = 1; r = libusb_submit_transfer(acl_out_transfer); if (r < 0) { usb_acl_out_active = 0; log_error("Error submitting acl transfer, %d", r); return -1; } return 0; } static int usb_can_send_packet_now(uint8_t packet_type){ switch (packet_type){ case HCI_COMMAND_DATA_PACKET: return !usb_command_active; case HCI_ACL_DATA_PACKET: return !usb_acl_out_active; #ifdef ENABLE_SCO_OVER_HCI case HCI_SCO_DATA_PACKET: return sco_ring_have_space(); #endif default: return 0; } } static int usb_send_packet(uint8_t packet_type, uint8_t * packet, int size){ switch (packet_type){ case HCI_COMMAND_DATA_PACKET: return usb_send_cmd_packet(packet, size); case HCI_ACL_DATA_PACKET: return usb_send_acl_packet(packet, size); #ifdef ENABLE_SCO_OVER_HCI case HCI_SCO_DATA_PACKET: return usb_send_sco_packet(packet, size); #endif default: return -1; } } #ifdef ENABLE_SCO_OVER_HCI static void usb_set_sco_config(uint16_t voice_setting, int num_connections){ log_info("usb_set_sco_config: voice settings 0x%04x, num connections %u", voice_setting, num_connections); if (num_connections != sco_num_connections){ sco_voice_setting = voice_setting; if (sco_num_connections){ usb_sco_stop(); } sco_num_connections = num_connections; if (num_connections){ usb_sco_start(); } } } #endif static void usb_register_packet_handler(void (*handler)(uint8_t packet_type, uint8_t *packet, uint16_t size)){ log_info("registering packet handler"); packet_handler = handler; } static void dummy_handler(uint8_t packet_type, uint8_t *packet, uint16_t size){ UNUSED(packet_type); UNUSED(packet); UNUSED(size); } // get usb singleton const hci_transport_t * hci_transport_usb_instance(void) { if (!hci_transport_usb) { hci_transport_usb = (hci_transport_t*) malloc( sizeof(hci_transport_t)); memset(hci_transport_usb, 0, sizeof(hci_transport_t)); hci_transport_usb->name = "H2_LIBUSB"; hci_transport_usb->open = usb_open; hci_transport_usb->close = usb_close; hci_transport_usb->register_packet_handler = usb_register_packet_handler; hci_transport_usb->can_send_packet_now = usb_can_send_packet_now; hci_transport_usb->send_packet = usb_send_packet; #ifdef ENABLE_SCO_OVER_HCI hci_transport_usb->set_sco_config = usb_set_sco_config; #endif } return hci_transport_usb; }