Linux Audio
Check our new training course
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
/* * Copyright (c) 2018 Intel Corporation * * SPDX-License-Identifier: Apache-2.0 */ #define LOG_LEVEL CONFIG_USB_DEVICE_LOG_LEVEL #include <logging/log.h> LOG_MODULE_REGISTER(usb_bos); #include <zephyr.h> #include <usb/usb_device.h> #include <usb/usb_common.h> #include <usb/bos.h> extern const u8_t __usb_bos_desc_start[]; extern const u8_t __usb_bos_desc_end[]; USB_DEVICE_BOS_DESC_DEFINE_HDR struct usb_bos_descriptor hdr = { .bLength = sizeof(struct usb_bos_descriptor), .bDescriptorType = USB_BINARY_OBJECT_STORE_DESC, .wTotalLength = 0, /* should be corrected with register */ .bNumDeviceCaps = 0, /* should be set with register */ }; size_t usb_bos_get_length(void) { return __usb_bos_desc_end - __usb_bos_desc_start; } const void *usb_bos_get_header(void) { return __usb_bos_desc_start; } void usb_bos_fix_total_length(void) { struct usb_bos_descriptor *hdr = (void *)__usb_bos_desc_start; hdr->wTotalLength = usb_bos_get_length(); } void usb_bos_register_cap(struct usb_bos_platform_descriptor *desc) { struct usb_bos_descriptor *hdr = (void *)__usb_bos_desc_start; /* Has effect only on first register */ hdr->wTotalLength = usb_bos_get_length(); hdr->bNumDeviceCaps += 1U; } int usb_handle_bos(struct usb_setup_packet *setup, s32_t *len, u8_t **data) { if (GET_DESC_TYPE(setup->wValue) == DESCRIPTOR_TYPE_BOS) { LOG_DBG("Read BOS descriptor"); *data = (u8_t *)usb_bos_get_header(); *len = usb_bos_get_length(); return 0; } return -ENOTSUP; }