As of today <zephyr/zephyr.h> is 100% equivalent to <zephyr/kernel.h>. This patch proposes to then include <zephyr/kernel.h> instead of <zephyr/zephyr.h> since it is more clear that you are including the Kernel APIs and (probably) nothing else. <zephyr/zephyr.h> sounds like a catch-all header that may be confusing. Most applications need to include a bunch of other things to compile, e.g. driver headers or subsystem headers like BT, logging, etc. The idea of a catch-all header in Zephyr is probably not feasible anyway. Reason is that Zephyr is not a library, like it could be for example `libpython`. Zephyr provides many utilities nowadays: a kernel, drivers, subsystems, etc and things will likely grow. A catch-all header would be massive, difficult to keep up-to-date. It is also likely that an application will only build a small subset. Note that subsystem-level headers may use a catch-all approach to make things easier, though. NOTE: This patch is **NOT** removing the header, just removing its usage in-tree. I'd advocate for its deprecation (add a #warning on it), but I understand many people will have concerns. Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
63 lines
1.4 KiB
C
63 lines
1.4 KiB
C
/*
|
|
* Copyright (c) 2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#define LOG_LEVEL CONFIG_USB_DEVICE_LOG_LEVEL
|
|
#include <zephyr/logging/log.h>
|
|
LOG_MODULE_REGISTER(usb_bos);
|
|
|
|
#include <zephyr/kernel.h>
|
|
|
|
#include <zephyr/usb/usb_device.h>
|
|
|
|
#include <zephyr/usb/bos.h>
|
|
|
|
extern const uint8_t __usb_bos_desc_start[];
|
|
extern const uint8_t __usb_bos_desc_end[];
|
|
|
|
USB_DEVICE_BOS_DESC_DEFINE_HDR struct usb_bos_descriptor bos_hdr = {
|
|
.bLength = sizeof(struct usb_bos_descriptor),
|
|
.bDescriptorType = USB_DESC_BOS,
|
|
.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)
|
|
{
|
|
bos_hdr.wTotalLength = usb_bos_get_length();
|
|
}
|
|
|
|
void usb_bos_register_cap(struct usb_bos_platform_descriptor *desc)
|
|
{
|
|
/* Has effect only on first register */
|
|
bos_hdr.wTotalLength = usb_bos_get_length();
|
|
|
|
bos_hdr.bNumDeviceCaps += 1U;
|
|
}
|
|
|
|
int usb_handle_bos(struct usb_setup_packet *setup,
|
|
int32_t *len, uint8_t **data)
|
|
{
|
|
if (USB_GET_DESCRIPTOR_TYPE(setup->wValue) == USB_DESC_BOS) {
|
|
LOG_DBG("Read BOS descriptor");
|
|
*data = (uint8_t *)usb_bos_get_header();
|
|
*len = usb_bos_get_length();
|
|
|
|
return 0;
|
|
}
|
|
|
|
return -ENOTSUP;
|
|
}
|