2021-07-17 18:51:33 +09:00
|
|
|
/*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2019 Ha Thach (tinyusb.org)
|
|
|
|
* Copyright (c) 2020 Reinhard Panhuber, Jerzy Kasenberg
|
|
|
|
* Copyright (c) 2021 Koji KITAYAMA
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* This file is part of the TinyUSB stack.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "tusb_option.h"
|
|
|
|
|
|
|
|
#if (TUSB_OPT_DEVICE_ENABLED && CFG_TUD_VIDEO)
|
|
|
|
|
|
|
|
#include "device/usbd.h"
|
|
|
|
#include "device/usbd_pvt.h"
|
|
|
|
|
|
|
|
#include "video_device.h"
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
// MACRO CONSTANT TYPEDEF
|
|
|
|
//--------------------------------------------------------------------+
|
2021-07-19 21:28:05 +09:00
|
|
|
typedef struct {
|
|
|
|
uint8_t num;
|
|
|
|
uint8_t alt;
|
|
|
|
} itf_setting_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
tusb_desc_interface_t std;
|
|
|
|
tusb_desc_cs_video_ctl_itf_hdr_t ctl;
|
|
|
|
} tusb_desc_vc_itf_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
tusb_desc_interface_t std;
|
|
|
|
tusb_desc_cs_video_stm_itf_hdr_t stm;
|
|
|
|
} tusb_desc_vs_itf_t;
|
|
|
|
|
2021-07-25 14:01:35 +09:00
|
|
|
typedef union {
|
|
|
|
tusb_desc_cs_video_ctl_itf_hdr_t ctl;
|
|
|
|
tusb_desc_cs_video_stm_itf_hdr_t stm;
|
|
|
|
} tusb_desc_video_itf_hdr_t;
|
|
|
|
|
2021-07-19 21:28:05 +09:00
|
|
|
typedef struct TU_ATTR_PACKED {
|
|
|
|
uint8_t bLength;
|
|
|
|
uint8_t bDescriptorType;
|
|
|
|
uint8_t bDescriptorSubtype;
|
2021-07-25 14:01:35 +09:00
|
|
|
uint8_t bEntityId;
|
2021-07-19 21:28:05 +09:00
|
|
|
} tusb_desc_cs_video_entity_itf_t;
|
|
|
|
|
2021-08-15 18:07:53 +09:00
|
|
|
|
2021-09-20 14:55:56 +09:00
|
|
|
typedef struct TU_ATTR_PACKED {
|
2021-08-15 18:07:53 +09:00
|
|
|
void const *beg; /* The head of the first video control interface descriptor */
|
|
|
|
uint16_t length; /* Byte length of the video control interface descriptors */
|
|
|
|
uint16_t offset; /* offset bytes for the current video control interface descripter */
|
|
|
|
uint8_t error_code; /* error code set by previous transaction */
|
|
|
|
uint8_t power_mode; /* current power mode */
|
|
|
|
} videod_control_interface_t;
|
|
|
|
|
2021-09-20 14:55:56 +09:00
|
|
|
typedef struct TU_ATTR_PACKED {
|
|
|
|
uint8_t index_vc; /* index of video control interface */
|
|
|
|
uint8_t error_code;/* error code for video control/streaming interface. 0:control 1:streaming 2:streaming */
|
|
|
|
struct {
|
|
|
|
uint16_t beg; /* Offset of the beggining of video streaming interface descriptor */
|
|
|
|
uint16_t end; /* Offset of the end of video streaming interface descriptor */
|
|
|
|
uint16_t cur; /* Offset of the current settings */
|
|
|
|
uint16_t ep[2]; /* Offset of endpoint descriptors */
|
|
|
|
} desc;
|
|
|
|
|
|
|
|
uint8_t *buffer; /* frame buffer. assume linear buffer. no support for stride access */
|
|
|
|
uint32_t bufsize; /* frame buffer */
|
|
|
|
uint32_t offset; /* offset for the next payload transfer */
|
|
|
|
uint32_t max_payload_transfer_size;
|
|
|
|
uint8_t ep_buf[CFG_TUD_VIDEO_EP_BUFSIZE];
|
2021-08-15 18:07:53 +09:00
|
|
|
} videod_streaming_interface_t;
|
|
|
|
|
2021-09-20 14:55:56 +09:00
|
|
|
typedef struct TU_ATTR_PACKED {
|
2021-07-25 14:01:35 +09:00
|
|
|
void const *beg; /* The head of the first video control interface descriptor */
|
|
|
|
uint16_t len; /* Byte length of the descriptors */
|
2021-09-20 14:55:56 +09:00
|
|
|
uint16_t cur; /* offset for current video control interface */
|
|
|
|
uint8_t stm[CFG_TUD_VIDEO_STREAMING]; /* Indices of streaming interface */
|
|
|
|
uint8_t error_code; /* error code for video control/streaming interface. */
|
2021-07-25 14:01:35 +09:00
|
|
|
uint8_t power_mode;
|
2021-07-17 18:51:33 +09:00
|
|
|
|
|
|
|
/*------------- From this point, data is not cleared by bus reset -------------*/
|
|
|
|
|
|
|
|
// Endpoint Transfer buffer
|
2021-07-25 14:01:35 +09:00
|
|
|
// CFG_TUSB_MEM_ALIGN uint8_t epout_buf[CFG_TUD_CDC_EP_BUFSIZE];
|
|
|
|
// CFG_TUSB_MEM_ALIGN uint8_t epin_buf[CFG_TUD_CDC_EP_BUFSIZE];
|
2021-08-15 18:07:53 +09:00
|
|
|
uint8_t ctl_buf[64];
|
2021-07-17 18:51:33 +09:00
|
|
|
|
|
|
|
} videod_interface_t;
|
|
|
|
|
2021-07-31 19:35:22 +09:00
|
|
|
#define ITF_MEM_RESET_SIZE offsetof(videod_interface_t, ctl_buf)
|
2021-07-17 18:51:33 +09:00
|
|
|
|
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
// INTERNAL OBJECT & FUNCTION DECLARATION
|
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
CFG_TUSB_MEM_SECTION static videod_interface_t _videod_itf[CFG_TUD_VIDEO];
|
2021-09-20 14:55:56 +09:00
|
|
|
CFG_TUSB_MEM_SECTION static videod_streaming_interface_t _videod_streaming_itf[CFG_TUD_VIDEO_STREAMING];
|
2021-07-17 18:51:33 +09:00
|
|
|
|
2021-07-25 14:01:35 +09:00
|
|
|
static uint8_t const _cap_get = 0x1u; /* support for GET */
|
|
|
|
static uint8_t const _cap_get_set = 0x3u; /* support for GET and SET */
|
2021-08-15 18:07:53 +09:00
|
|
|
static video_probe_and_commit_control_t const def_stm_settings = {
|
|
|
|
.bmHint = 0,
|
|
|
|
.bFormatIndex = 1,
|
|
|
|
.bFrameIndex = 1,
|
2021-09-20 14:55:56 +09:00
|
|
|
.dwFrameInterval = (10000000/10),
|
2021-08-15 18:07:53 +09:00
|
|
|
.wKeyFrameRate = 1,
|
|
|
|
.wPFrameRate = 0,
|
|
|
|
.wCompQuality = 1, /* 1 to 10000 */
|
|
|
|
.wCompWindowSize = 1, /* Maybe it is match to GOP size */
|
|
|
|
.wDelay = 240, /* milliseconds */
|
|
|
|
.dwMaxVideoFrameSize = 128 * 96 * 12 / 8,
|
|
|
|
.dwMaxPayloadTransferSize = 256, /* Maybe it is the maximum packet size under this settings */
|
|
|
|
.dwClockFrequency = 27000000, /* same as MPEG-2 system time clock */
|
|
|
|
.bmFramingInfo = 0,
|
|
|
|
.bPreferedVersion = 1,
|
|
|
|
.bMinVersion = 1,
|
|
|
|
.bMaxVersion = 1,
|
|
|
|
.bUsage = 0,
|
|
|
|
.bBitDepthLuma = 8,
|
|
|
|
.bmSettings = 0,
|
|
|
|
.bMaxNumberOfRefFramesPlus1 = 0,
|
|
|
|
.bmRateControlModes = 0,
|
|
|
|
.bmLayoutPerStream = 0
|
|
|
|
};
|
2021-07-25 14:01:35 +09:00
|
|
|
|
2021-09-20 14:55:56 +09:00
|
|
|
static inline uint8_t _desc_itfnum(void const *desc)
|
2021-07-25 14:01:35 +09:00
|
|
|
{
|
2021-09-20 14:55:56 +09:00
|
|
|
return ((uint8_t const*)desc)[2];
|
2021-07-25 14:01:35 +09:00
|
|
|
}
|
|
|
|
|
2021-09-20 14:55:56 +09:00
|
|
|
static inline uint8_t _desc_ep_addr(void const *desc)
|
2021-07-25 14:01:35 +09:00
|
|
|
{
|
2021-09-20 14:55:56 +09:00
|
|
|
return ((uint8_t const*)desc)[2];
|
2021-07-25 14:01:35 +09:00
|
|
|
}
|
|
|
|
|
2021-09-20 14:55:56 +09:00
|
|
|
static tusb_desc_vc_itf_t const* _get_desc_vc(videod_interface_t const *self)
|
2021-07-31 19:35:22 +09:00
|
|
|
{
|
2021-09-20 14:55:56 +09:00
|
|
|
return (tusb_desc_vc_itf_t const *)(self->beg + self->cur);
|
|
|
|
}
|
|
|
|
|
|
|
|
static tusb_desc_vs_itf_t const *_get_desc_vs(videod_streaming_interface_t const *self)
|
|
|
|
{
|
|
|
|
if (!self->desc.cur) return NULL;
|
|
|
|
void const *desc = _videod_itf[self->index_vc].beg;
|
|
|
|
return (tusb_desc_vs_itf_t const*)(desc + self->desc.cur);
|
2021-07-31 19:35:22 +09:00
|
|
|
}
|
|
|
|
|
2021-07-19 21:28:05 +09:00
|
|
|
/** Find the first descriptor with the specified descriptor type.
|
|
|
|
*
|
|
|
|
* @param[in] beg The head of descriptor byte array.
|
|
|
|
* @param[in] end The tail of descriptor byte array.
|
|
|
|
* @param[in] target The target descriptor type.
|
|
|
|
*
|
|
|
|
* @return The pointer for interface descriptor.
|
|
|
|
* @retval end did not found interface descriptor */
|
2021-07-25 14:01:35 +09:00
|
|
|
static void const* _find_desc(void const *beg, void const *end, uint8_t target)
|
2021-07-17 18:51:33 +09:00
|
|
|
{
|
2021-07-25 14:01:35 +09:00
|
|
|
void const *cur = beg;
|
|
|
|
while ((cur < end) && (target != tu_desc_type(cur))) {
|
|
|
|
cur = tu_desc_next(cur);
|
2021-07-17 18:51:33 +09:00
|
|
|
}
|
2021-07-25 14:01:35 +09:00
|
|
|
return cur;
|
2021-07-19 21:28:05 +09:00
|
|
|
}
|
|
|
|
|
2021-07-25 14:01:35 +09:00
|
|
|
/** Return the next interface descriptor except alternate ones.
|
2021-07-19 21:28:05 +09:00
|
|
|
*
|
|
|
|
* @param[in] beg The head of descriptor byte array.
|
|
|
|
* @param[in] end The tail of descriptor byte array.
|
|
|
|
*
|
|
|
|
* @return The pointer for interface descriptor.
|
|
|
|
* @retval end did not found interface descriptor */
|
2021-07-25 14:01:35 +09:00
|
|
|
static void const* _next_desc_itf(void const *beg, void const *end)
|
2021-07-19 21:28:05 +09:00
|
|
|
{
|
2021-07-25 14:01:35 +09:00
|
|
|
void const *cur = beg;
|
|
|
|
unsigned itfnum = ((tusb_desc_interface_t const*)cur)->bInterfaceNumber;
|
|
|
|
while ((cur < end) &&
|
2021-08-15 18:07:53 +09:00
|
|
|
(itfnum == ((tusb_desc_interface_t const*)cur)->bInterfaceNumber)) {
|
2021-07-25 14:01:35 +09:00
|
|
|
cur = _find_desc(tu_desc_next(cur), end, TUSB_DESC_INTERFACE);
|
2021-07-19 21:28:05 +09:00
|
|
|
}
|
2021-07-25 14:01:35 +09:00
|
|
|
return cur;
|
2021-07-19 21:28:05 +09:00
|
|
|
}
|
|
|
|
|
2021-07-25 14:01:35 +09:00
|
|
|
/** Find the first interface descriptor with the specified interface number and alternate setting number.
|
2021-07-19 21:28:05 +09:00
|
|
|
*
|
|
|
|
* @param[in] beg The head of descriptor byte array.
|
|
|
|
* @param[in] end The tail of descriptor byte array.
|
2021-07-25 14:01:35 +09:00
|
|
|
* @param[in] itfnum The target interface number.
|
|
|
|
* @param[in] altnum The target alternate setting number.
|
2021-07-19 21:28:05 +09:00
|
|
|
*
|
|
|
|
* @return The pointer for interface descriptor.
|
|
|
|
* @retval end did not found interface descriptor */
|
2021-07-25 14:01:35 +09:00
|
|
|
static void const* _find_desc_itf(void const *beg, void const *end, unsigned itfnum, unsigned altnum)
|
2021-07-19 21:28:05 +09:00
|
|
|
{
|
2021-07-25 14:01:35 +09:00
|
|
|
for (void const *cur = beg; cur < end; cur = _find_desc(cur, end, TUSB_DESC_INTERFACE)) {
|
|
|
|
tusb_desc_interface_t const *itf = (tusb_desc_interface_t const *)cur;
|
|
|
|
if (itf->bInterfaceNumber == itfnum && itf->bAlternateSetting == altnum) {
|
2021-07-19 21:28:05 +09:00
|
|
|
return itf;
|
|
|
|
}
|
|
|
|
cur = tu_desc_next(cur);
|
|
|
|
}
|
|
|
|
return end;
|
|
|
|
}
|
|
|
|
|
2021-09-20 14:55:56 +09:00
|
|
|
/** Find the first endpoint descriptor in front of the next interface descriptor.
|
|
|
|
*
|
|
|
|
* @param[in] beg The head of descriptor byte array.
|
|
|
|
* @param[in] end The tail of descriptor byte array.
|
|
|
|
*
|
|
|
|
* @return The pointer for endpoint descriptor.
|
|
|
|
* @retval end did not found endpoint descriptor */
|
|
|
|
static void const* _find_desc_ep(void const *beg, void const *end)
|
|
|
|
{
|
|
|
|
for (void const *cur = beg; cur < end; cur = tu_desc_next(cur)) {
|
|
|
|
uint8_t desc_type = tu_desc_type(cur);
|
|
|
|
if (TUSB_DESC_ENDPOINT == desc_type) return cur;
|
|
|
|
if (TUSB_DESC_INTERFACE == desc_type) break;
|
|
|
|
}
|
|
|
|
return end;
|
|
|
|
}
|
|
|
|
|
2021-07-25 14:01:35 +09:00
|
|
|
/** Find the first entity descriptor with the specified entity ID in the video control interface descriptor.
|
2021-07-19 21:28:05 +09:00
|
|
|
*
|
2021-07-25 14:01:35 +09:00
|
|
|
* @param[in] vc The video control interface descriptor.
|
|
|
|
* @param[in] entityid The target entity id.
|
2021-07-19 21:28:05 +09:00
|
|
|
*
|
|
|
|
* @return The pointer for interface descriptor.
|
|
|
|
* @retval end did not found interface descriptor */
|
2021-07-25 14:01:35 +09:00
|
|
|
static void const* _find_desc_entity(tusb_desc_vc_itf_t const *vc, unsigned entityid)
|
2021-07-19 21:28:05 +09:00
|
|
|
{
|
2021-07-25 14:01:35 +09:00
|
|
|
void const *beg = (void const*)vc;
|
2021-08-01 17:11:43 +09:00
|
|
|
void const *end = beg + vc->std.bLength + vc->ctl.wTotalLength;
|
2021-07-25 14:01:35 +09:00
|
|
|
for (void const *cur = beg; cur < end; cur = _find_desc(cur, end, TUSB_DESC_CS_INTERFACE)) {
|
2021-07-19 21:28:05 +09:00
|
|
|
tusb_desc_cs_video_entity_itf_t const *itf = (tusb_desc_cs_video_entity_itf_t const *)cur;
|
2021-08-15 18:07:53 +09:00
|
|
|
if ((VIDEO_CS_VC_INTERFACE_INPUT_TERMINAL <= itf->bDescriptorSubtype
|
|
|
|
&& itf->bDescriptorSubtype < VIDEO_CS_VC_INTERFACE_MAX)
|
|
|
|
&& itf->bEntityId == entityid) {
|
2021-07-19 21:28:05 +09:00
|
|
|
return itf;
|
|
|
|
}
|
|
|
|
cur = tu_desc_next(cur);
|
|
|
|
}
|
|
|
|
return end;
|
|
|
|
}
|
|
|
|
|
2021-07-31 19:35:22 +09:00
|
|
|
/** Close current video control interface.
|
|
|
|
*
|
|
|
|
* @param[in,out] self The context.
|
|
|
|
* @param[in] altnum The target alternate setting number. */
|
2021-07-25 14:01:35 +09:00
|
|
|
static bool _close_vc_itf(uint8_t rhport, videod_interface_t *self)
|
|
|
|
{
|
|
|
|
tusb_desc_vc_itf_t const *vc = _get_desc_vc(self);
|
|
|
|
/* The next descriptor after the class-specific VC interface header descriptor. */
|
|
|
|
void const *cur = (void const*)vc + vc->std.bLength + vc->ctl.bLength;
|
|
|
|
/* The end of the video control interface descriptor. */
|
2021-08-01 17:11:43 +09:00
|
|
|
void const *end = (void const*)vc + vc->std.bLength + vc->ctl.wTotalLength;
|
2021-07-25 14:01:35 +09:00
|
|
|
if (vc->std.bNumEndpoints) {
|
|
|
|
/* Find the notification endpoint descriptor. */
|
|
|
|
cur = _find_desc(cur, end, TUSB_DESC_ENDPOINT);
|
|
|
|
TU_ASSERT(cur < end);
|
|
|
|
tusb_desc_endpoint_t const *notif = (tusb_desc_endpoint_t const *)cur;
|
|
|
|
usbd_edpt_close(rhport, notif->bEndpointAddress);
|
|
|
|
}
|
2021-09-20 14:55:56 +09:00
|
|
|
self->cur = 0;
|
2021-07-25 14:01:35 +09:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-07-19 21:28:05 +09:00
|
|
|
/** Set the specified alternate setting to own video control interface.
|
|
|
|
*
|
|
|
|
* @param[in,out] self The context.
|
2021-07-25 14:01:35 +09:00
|
|
|
* @param[in] altnum The target alternate setting number. */
|
2021-07-31 19:35:22 +09:00
|
|
|
static bool _open_vc_itf(uint8_t rhport, videod_interface_t *self, unsigned altnum)
|
2021-07-19 21:28:05 +09:00
|
|
|
{
|
2021-08-01 17:11:43 +09:00
|
|
|
TU_LOG2(" open VC %d\r\n", altnum);
|
2021-07-19 21:28:05 +09:00
|
|
|
void const *beg = self->beg;
|
2021-07-25 14:01:35 +09:00
|
|
|
void const *end = beg + self->len;
|
2021-07-31 19:35:22 +09:00
|
|
|
/* The first descriptor is a video control interface descriptor. */
|
2021-09-20 14:55:56 +09:00
|
|
|
void const *cur = _find_desc_itf(beg, end, _desc_itfnum(beg), altnum);
|
2021-08-01 17:11:43 +09:00
|
|
|
TU_LOG2(" cur %ld\r\n", cur - beg);
|
2021-07-25 14:01:35 +09:00
|
|
|
TU_VERIFY(cur < end);
|
2021-07-19 21:28:05 +09:00
|
|
|
|
|
|
|
tusb_desc_vc_itf_t const *vc = (tusb_desc_vc_itf_t const *)cur;
|
2021-08-01 17:11:43 +09:00
|
|
|
TU_LOG2(" bInCollection %d\r\n", vc->ctl.bInCollection);
|
2021-07-19 21:28:05 +09:00
|
|
|
/* Support for up to 2 streaming interfaces only. */
|
2021-09-20 14:55:56 +09:00
|
|
|
TU_ASSERT(vc->ctl.bInCollection <= CFG_TUD_VIDEO_STREAMING);
|
2021-07-19 21:28:05 +09:00
|
|
|
|
2021-08-01 17:11:43 +09:00
|
|
|
/* Update to point the end of the video control interface descriptor. */
|
|
|
|
end = cur + vc->std.bLength + vc->ctl.wTotalLength;
|
2021-07-19 21:28:05 +09:00
|
|
|
/* Advance to the next descriptor after the class-specific VC interface header descriptor. */
|
|
|
|
cur += vc->std.bLength + vc->ctl.bLength;
|
2021-08-01 17:11:43 +09:00
|
|
|
TU_LOG2(" bNumEndpoints %d\r\n", vc->std.bNumEndpoints);
|
2021-07-19 21:28:05 +09:00
|
|
|
/* Open the notification endpoint if it exist. */
|
|
|
|
if (vc->std.bNumEndpoints) {
|
|
|
|
/* Support for 1 endpoint only. */
|
2021-07-25 14:01:35 +09:00
|
|
|
TU_VERIFY(1 == vc->std.bNumEndpoints);
|
2021-07-19 21:28:05 +09:00
|
|
|
/* Find the notification endpoint descriptor. */
|
2021-07-25 14:01:35 +09:00
|
|
|
cur = _find_desc(cur, end, TUSB_DESC_ENDPOINT);
|
|
|
|
TU_VERIFY(cur < end);
|
2021-07-19 21:28:05 +09:00
|
|
|
tusb_desc_endpoint_t const *notif = (tusb_desc_endpoint_t const *)cur;
|
|
|
|
/* Open the notification endpoint */
|
2021-07-25 14:01:35 +09:00
|
|
|
TU_ASSERT(usbd_edpt_open(rhport, notif));
|
2021-07-19 21:28:05 +09:00
|
|
|
}
|
2021-09-20 14:55:56 +09:00
|
|
|
self->cur = (void const*)vc - beg;
|
2021-07-25 14:01:35 +09:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Set the specified alternate setting to own video control interface.
|
|
|
|
*
|
|
|
|
* @param[in,out] self The context.
|
2021-09-20 14:55:56 +09:00
|
|
|
* @param[in] altnum The target alternate setting number. */
|
|
|
|
static bool _open_vs_itf(uint8_t rhport, videod_streaming_interface_t *stm, unsigned altnum)
|
2021-07-25 14:01:35 +09:00
|
|
|
{
|
2021-09-20 14:55:56 +09:00
|
|
|
unsigned i;
|
|
|
|
TU_LOG1(" reopen VS %d\r\n", altnum);
|
|
|
|
void const *desc = _videod_itf[stm->index_vc].beg;
|
|
|
|
|
|
|
|
/* Close endpoints of previous settings. */
|
|
|
|
for (i = 0; i < TU_ARRAY_SIZE(stm->desc.ep); ++i) {
|
|
|
|
unsigned ofs_ep = stm->desc.ep[i];
|
|
|
|
if (!ofs_ep) break;
|
|
|
|
unsigned ep_adr = _desc_ep_addr(desc + ofs_ep);
|
|
|
|
usbd_edpt_close(rhport, ep_adr);
|
|
|
|
stm->desc.ep[i] = 0;
|
|
|
|
TU_LOG1(" close EP%02x\n", ep_adr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find a alternate interface */
|
|
|
|
void const *beg = desc + stm->desc.beg;
|
|
|
|
void const *end = desc + stm->desc.end;
|
|
|
|
void const *cur = _find_desc_itf(beg, end, _desc_itfnum(beg), altnum);
|
|
|
|
TU_VERIFY(cur < end);
|
|
|
|
unsigned numeps = ((tusb_desc_interface_t const *)cur)->bNumEndpoints;
|
|
|
|
TU_ASSERT(numeps <= TU_ARRAY_SIZE(stm->desc.ep));
|
|
|
|
stm->desc.cur = cur - desc; /* Save the offset of the new settings */
|
|
|
|
/* Open endpoints of the new settings. */
|
|
|
|
for (i = 0, cur = tu_desc_next(cur); i < numeps; ++i, cur = tu_desc_next(cur)) {
|
|
|
|
cur = _find_desc_ep(cur, end);
|
2021-07-25 14:01:35 +09:00
|
|
|
TU_ASSERT(cur < end);
|
2021-09-20 14:55:56 +09:00
|
|
|
TU_ASSERT(usbd_edpt_open(rhport, (tusb_desc_endpoint_t const *)cur));
|
|
|
|
stm->desc.ep[i] = cur - desc;
|
|
|
|
stm->max_payload_transfer_size = CFG_TUD_VIDEO_EP_BUFSIZE;
|
|
|
|
TU_LOG1(" open EP%02x\n", _desc_ep_addr(cur));
|
2021-07-25 14:01:35 +09:00
|
|
|
}
|
|
|
|
return true;
|
2021-07-17 18:51:33 +09:00
|
|
|
}
|
|
|
|
|
2021-09-20 14:55:56 +09:00
|
|
|
static int _payload_xfer_in(uint8_t rhport, uint8_t itf)
|
2021-07-25 14:01:35 +09:00
|
|
|
{
|
2021-09-20 14:55:56 +09:00
|
|
|
videod_streaming_interface_t *stm = &_videod_streaming_itf[itf];
|
|
|
|
void const *desc = _videod_itf[stm->index_vc].beg;
|
|
|
|
unsigned ep_addr = 0;
|
|
|
|
for (unsigned i = 0; i < CFG_TUD_VIDEO_STREAMING; ++i) {
|
|
|
|
unsigned ofs_ep = stm->desc.ep[i];
|
|
|
|
if (!ofs_ep) continue;
|
|
|
|
ep_addr = _desc_ep_addr(desc + ofs_ep);
|
|
|
|
if (tu_edpt_dir(ep_addr))
|
2021-07-25 14:01:35 +09:00
|
|
|
break;
|
|
|
|
}
|
2021-09-20 14:55:56 +09:00
|
|
|
TU_ASSERT(ep_addr, 0);
|
|
|
|
/* Claim the endpoint */
|
|
|
|
TU_VERIFY( usbd_edpt_claim(rhport, ep_addr), 0);
|
|
|
|
|
|
|
|
/* prepare a payload */
|
|
|
|
unsigned mps = stm->max_payload_transfer_size;
|
|
|
|
uint32_t remaining = stm->bufsize - stm->offset;
|
|
|
|
uint32_t data_len = remaining < (mps - 2) ? remaining: (mps - 2);
|
|
|
|
stm->ep_buf[0] = 1;
|
|
|
|
stm->ep_buf[1] = 0;
|
|
|
|
memcpy(&stm->ep_buf[2], stm->buffer + stm->offset, data_len);
|
|
|
|
stm->offset += data_len;
|
|
|
|
remaining -= data_len;
|
|
|
|
TU_LOG2(" %d\n", data_len, remaining);
|
|
|
|
TU_ASSERT( usbd_edpt_xfer(rhport, ep_addr, stm->ep_buf, 2 + data_len), 0 );
|
|
|
|
|
|
|
|
if (!remaining) {
|
|
|
|
stm->buffer = NULL;
|
|
|
|
stm->bufsize = 0;
|
|
|
|
stm->offset = 0;
|
|
|
|
if (tud_video_frame_xfer_complete_cb)
|
|
|
|
tud_video_frame_xfer_complete_cb();
|
2021-07-25 14:01:35 +09:00
|
|
|
}
|
2021-09-20 14:55:56 +09:00
|
|
|
return data_len;
|
2021-07-25 14:01:35 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Handle a standard request to the video control interface. */
|
|
|
|
static int handle_video_ctl_std_req(uint8_t rhport, uint8_t stage, tusb_control_request_t const *request, unsigned itf)
|
|
|
|
{
|
2021-07-31 19:35:22 +09:00
|
|
|
switch (request->bRequest) {
|
2021-07-25 14:01:35 +09:00
|
|
|
case TUSB_REQ_GET_INTERFACE:
|
|
|
|
if (stage != CONTROL_STAGE_SETUP) return VIDEO_NO_ERROR;
|
2021-07-31 19:35:22 +09:00
|
|
|
TU_VERIFY(1 == request->wLength, VIDEO_UNKNOWN);
|
|
|
|
tusb_desc_vc_itf_t const *vc = _get_desc_vc(&_videod_itf[itf]);
|
|
|
|
if (!vc) return VIDEO_UNKNOWN;
|
|
|
|
if (tud_control_xfer(rhport, request,
|
2021-08-15 18:07:53 +09:00
|
|
|
(void*)&vc->std.bAlternateSetting,
|
|
|
|
sizeof(vc->std.bAlternateSetting)))
|
2021-07-25 14:01:35 +09:00
|
|
|
return VIDEO_NO_ERROR;
|
|
|
|
return VIDEO_UNKNOWN;
|
2021-07-31 19:35:22 +09:00
|
|
|
case TUSB_REQ_SET_INTERFACE:
|
|
|
|
if (stage != CONTROL_STAGE_SETUP) return VIDEO_NO_ERROR;
|
|
|
|
TU_VERIFY(0 == request->wLength, VIDEO_UNKNOWN);
|
|
|
|
if (!_close_vc_itf(rhport, &_videod_itf[itf]))
|
|
|
|
return VIDEO_UNKNOWN;
|
|
|
|
if (!_open_vc_itf(rhport, &_videod_itf[itf], request->wValue))
|
|
|
|
return VIDEO_UNKNOWN;
|
2021-08-09 17:11:05 +09:00
|
|
|
tud_control_status(rhport, request);
|
2021-07-31 19:35:22 +09:00
|
|
|
return VIDEO_NO_ERROR;
|
2021-07-25 14:01:35 +09:00
|
|
|
default: /* Unknown/Unsupported request */
|
|
|
|
TU_BREAKPOINT();
|
|
|
|
return VIDEO_INVALID_REQUEST;
|
2021-07-19 21:28:05 +09:00
|
|
|
}
|
2021-07-25 14:01:35 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
static int handle_video_ctl_cs_req(uint8_t rhport, uint8_t stage, tusb_control_request_t const *request, unsigned itf)
|
|
|
|
{
|
2021-07-31 19:35:22 +09:00
|
|
|
videod_interface_t *self = &_videod_itf[itf];
|
2021-07-25 14:01:35 +09:00
|
|
|
/* 4.2.1 Interface Control Request */
|
|
|
|
switch (TU_U16_HIGH(request->wValue)) {
|
|
|
|
case VIDEO_VC_CTL_VIDEO_POWER_MODE:
|
2021-08-15 18:07:53 +09:00
|
|
|
TU_LOG2(" Power Mode ");
|
2021-07-31 19:35:22 +09:00
|
|
|
switch (request->bRequest) {
|
2021-07-25 14:01:35 +09:00
|
|
|
case VIDEO_REQUEST_SET_CUR:
|
|
|
|
if (stage == CONTROL_STAGE_SETUP) {
|
2021-08-15 18:07:53 +09:00
|
|
|
TU_LOG2("Set\r\n");
|
2021-07-25 14:01:35 +09:00
|
|
|
TU_VERIFY(1 == request->wLength, VIDEO_UNKNOWN);
|
|
|
|
if (!tud_control_xfer(rhport, request, &self->power_mode, sizeof(self->power_mode)))
|
|
|
|
return VIDEO_UNKNOWN;
|
|
|
|
} else if (stage == CONTROL_STAGE_ACK) {
|
2021-07-31 19:35:22 +09:00
|
|
|
if (tud_video_power_mode_cb) return tud_video_power_mode_cb(itf, self->power_mode);
|
2021-07-25 14:01:35 +09:00
|
|
|
}
|
|
|
|
return VIDEO_NO_ERROR;
|
|
|
|
case VIDEO_REQUEST_GET_CUR:
|
2021-08-15 18:07:53 +09:00
|
|
|
if (stage != CONTROL_STAGE_SETUP) return VIDEO_NO_ERROR;
|
|
|
|
TU_LOG2("Get\r\n");
|
|
|
|
TU_VERIFY(1 == request->wLength, VIDEO_UNKNOWN);
|
|
|
|
if (!tud_control_xfer(rhport, request, &self->power_mode, sizeof(self->power_mode)))
|
|
|
|
return VIDEO_UNKNOWN;
|
2021-07-25 14:01:35 +09:00
|
|
|
return VIDEO_NO_ERROR;
|
|
|
|
case VIDEO_REQUEST_GET_INFO:
|
2021-08-15 18:07:53 +09:00
|
|
|
if (stage != CONTROL_STAGE_SETUP) return VIDEO_NO_ERROR;
|
|
|
|
TU_LOG2("GetInfo\r\n");
|
|
|
|
TU_VERIFY(1 == request->wLength, VIDEO_UNKNOWN);
|
|
|
|
if (!tud_control_xfer(rhport, request, (uint8_t*)&_cap_get_set, sizeof(_cap_get_set)))
|
|
|
|
return VIDEO_UNKNOWN;
|
2021-07-25 14:01:35 +09:00
|
|
|
return VIDEO_NO_ERROR;
|
|
|
|
default: break;
|
2021-07-19 21:28:05 +09:00
|
|
|
}
|
2021-07-25 14:01:35 +09:00
|
|
|
break;
|
|
|
|
case VIDEO_VC_CTL_REQUEST_ERROR_CODE:
|
2021-08-15 18:07:53 +09:00
|
|
|
TU_LOG2(" Error Code");
|
2021-07-31 19:35:22 +09:00
|
|
|
switch (request->bRequest) {
|
2021-07-25 14:01:35 +09:00
|
|
|
case VIDEO_REQUEST_GET_CUR:
|
2021-08-15 18:07:53 +09:00
|
|
|
if (stage != CONTROL_STAGE_SETUP) return VIDEO_NO_ERROR;
|
|
|
|
TU_LOG2(" Get\r\n");
|
2021-09-20 14:55:56 +09:00
|
|
|
if (!tud_control_xfer(rhport, request, &self->error_code, sizeof(uint8_t)))
|
2021-08-15 18:07:53 +09:00
|
|
|
return VIDEO_UNKNOWN;
|
2021-07-25 14:01:35 +09:00
|
|
|
return VIDEO_NO_ERROR;
|
|
|
|
case VIDEO_REQUEST_GET_INFO:
|
2021-08-15 18:07:53 +09:00
|
|
|
if (stage != CONTROL_STAGE_SETUP) return VIDEO_NO_ERROR;
|
|
|
|
TU_LOG2(" GetInfo\r\n");
|
|
|
|
if (tud_control_xfer(rhport, request, (uint8_t*)&_cap_get, sizeof(_cap_get)))
|
|
|
|
return VIDEO_UNKNOWN;
|
2021-07-25 14:01:35 +09:00
|
|
|
return VIDEO_NO_ERROR;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default: break;
|
2021-07-19 21:28:05 +09:00
|
|
|
}
|
2021-07-25 14:01:35 +09:00
|
|
|
/* Unknown/Unsupported request */
|
|
|
|
TU_BREAKPOINT();
|
|
|
|
return VIDEO_INVALID_REQUEST;
|
2021-07-19 21:28:05 +09:00
|
|
|
}
|
|
|
|
|
2021-07-25 14:01:35 +09:00
|
|
|
static int handle_video_ctl_req(uint8_t rhport, uint8_t stage, tusb_control_request_t const *request, unsigned itf)
|
2021-07-19 21:28:05 +09:00
|
|
|
{
|
2021-07-31 19:35:22 +09:00
|
|
|
unsigned entity_id;
|
|
|
|
switch (request->bmRequestType_bit.type) {
|
2021-07-25 14:01:35 +09:00
|
|
|
case TUSB_REQ_TYPE_STANDARD:
|
|
|
|
return handle_video_ctl_std_req(rhport, stage, request, itf);
|
|
|
|
case TUSB_REQ_TYPE_CLASS:
|
2021-07-31 19:35:22 +09:00
|
|
|
entity_id = TU_U16_HIGH(request->wIndex);
|
|
|
|
if (!entity_id) {
|
2021-07-25 14:01:35 +09:00
|
|
|
return handle_video_ctl_cs_req(rhport, stage, request, itf);
|
|
|
|
} else {
|
2021-07-31 19:35:22 +09:00
|
|
|
if (!_find_desc_entity(_get_desc_vc(&_videod_itf[itf]), entity_id))
|
2021-08-15 18:07:53 +09:00
|
|
|
return VIDEO_INVALID_REQUEST;
|
2021-07-25 14:01:35 +09:00
|
|
|
return VIDEO_INVALID_REQUEST;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return VIDEO_INVALID_REQUEST;
|
|
|
|
}
|
|
|
|
}
|
2021-07-19 21:28:05 +09:00
|
|
|
|
2021-07-25 14:01:35 +09:00
|
|
|
static int handle_video_stm_std_req(uint8_t rhport, uint8_t stage, tusb_control_request_t const *request, unsigned itf)
|
|
|
|
{
|
2021-09-20 14:55:56 +09:00
|
|
|
videod_streaming_interface_t *self = &_videod_streaming_itf[itf];
|
2021-07-31 19:35:22 +09:00
|
|
|
switch (request->bRequest) {
|
2021-07-25 14:01:35 +09:00
|
|
|
case TUSB_REQ_GET_INTERFACE:
|
|
|
|
if (stage != CONTROL_STAGE_SETUP) return VIDEO_NO_ERROR;
|
2021-07-31 19:35:22 +09:00
|
|
|
TU_VERIFY(1 == request->wLength, VIDEO_UNKNOWN);
|
2021-09-20 14:55:56 +09:00
|
|
|
tusb_desc_vs_itf_t const *vs = _get_desc_vs(self);
|
2021-07-31 19:35:22 +09:00
|
|
|
if (!vs) return VIDEO_UNKNOWN;
|
|
|
|
if (tud_control_xfer(rhport, request,
|
2021-08-15 18:07:53 +09:00
|
|
|
(void*)&vs->std.bAlternateSetting,
|
|
|
|
sizeof(vs->std.bAlternateSetting)))
|
2021-07-25 14:01:35 +09:00
|
|
|
return VIDEO_NO_ERROR;
|
|
|
|
return VIDEO_UNKNOWN;
|
2021-07-31 19:35:22 +09:00
|
|
|
case TUSB_REQ_SET_INTERFACE:
|
|
|
|
if (stage != CONTROL_STAGE_SETUP) return VIDEO_NO_ERROR;
|
2021-09-20 14:55:56 +09:00
|
|
|
if (!_open_vs_itf(rhport, self, request->wValue))
|
2021-07-31 19:35:22 +09:00
|
|
|
return VIDEO_UNKNOWN;
|
2021-08-09 17:11:05 +09:00
|
|
|
tud_control_status(rhport, request);
|
2021-07-31 19:35:22 +09:00
|
|
|
return VIDEO_NO_ERROR;
|
2021-07-25 14:01:35 +09:00
|
|
|
default: /* Unknown/Unsupported request */
|
|
|
|
TU_BREAKPOINT();
|
|
|
|
return VIDEO_INVALID_REQUEST;
|
2021-07-19 21:28:05 +09:00
|
|
|
}
|
2021-07-25 14:01:35 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
static int handle_video_stm_cs_req(uint8_t rhport, uint8_t stage, tusb_control_request_t const *request, unsigned itf)
|
|
|
|
{
|
2021-08-15 18:07:53 +09:00
|
|
|
(void)rhport;
|
2021-09-20 14:55:56 +09:00
|
|
|
videod_streaming_interface_t *self = &_videod_streaming_itf[itf];
|
2021-07-25 14:01:35 +09:00
|
|
|
/* 4.2.1 Interface Control Request */
|
|
|
|
switch (TU_U16_HIGH(request->wValue)) {
|
2021-08-15 18:07:53 +09:00
|
|
|
case VIDEO_VS_CTL_STREAM_ERROR_CODE:
|
|
|
|
TU_LOG2(" Error Code ");
|
|
|
|
switch (request->bRequest) {
|
|
|
|
case VIDEO_REQUEST_GET_CUR:
|
|
|
|
if (stage != CONTROL_STAGE_SETUP) return VIDEO_NO_ERROR;
|
|
|
|
/* TODO */
|
2021-09-20 14:55:56 +09:00
|
|
|
if (!tud_control_xfer(rhport, request, &self->error_code, sizeof(uint8_t)))
|
2021-08-15 18:07:53 +09:00
|
|
|
return VIDEO_UNKNOWN;
|
|
|
|
return VIDEO_NO_ERROR;
|
|
|
|
case VIDEO_REQUEST_GET_INFO:
|
|
|
|
if (stage != CONTROL_STAGE_SETUP) return VIDEO_NO_ERROR;
|
|
|
|
TU_LOG2("GetInfo\r\n");
|
|
|
|
if (tud_control_xfer(rhport, request, (uint8_t*)&_cap_get, sizeof(_cap_get)))
|
|
|
|
return VIDEO_UNKNOWN;
|
|
|
|
return VIDEO_NO_ERROR;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
break;
|
2021-07-25 14:01:35 +09:00
|
|
|
case VIDEO_VS_CTL_PROBE:
|
2021-07-31 19:35:22 +09:00
|
|
|
switch (request->bRequest) {
|
2021-07-25 14:01:35 +09:00
|
|
|
case VIDEO_REQUEST_SET_CUR:
|
2021-08-15 18:07:53 +09:00
|
|
|
if (stage == CONTROL_STAGE_SETUP) {
|
|
|
|
TU_VERIFY(sizeof(video_probe_and_commit_control_t) == request->wLength, VIDEO_UNKNOWN);
|
2021-09-20 14:55:56 +09:00
|
|
|
if (!tud_control_xfer(rhport, request, self->ep_buf, sizeof(video_probe_and_commit_control_t)))
|
2021-08-15 18:07:53 +09:00
|
|
|
return VIDEO_UNKNOWN;
|
|
|
|
} else if (stage == CONTROL_STAGE_ACK) {
|
|
|
|
if (tud_video_probe_set_cb)
|
2021-09-20 14:55:56 +09:00
|
|
|
return tud_video_probe_set_cb(itf, (video_probe_and_commit_control_t const*)self->ep_buf);
|
2021-08-15 18:07:53 +09:00
|
|
|
}
|
|
|
|
return VIDEO_NO_ERROR;
|
2021-07-25 14:01:35 +09:00
|
|
|
case VIDEO_REQUEST_GET_CUR:
|
2021-08-15 18:07:53 +09:00
|
|
|
if (stage != CONTROL_STAGE_SETUP) return VIDEO_NO_ERROR;
|
|
|
|
TU_VERIFY(request->wLength, VIDEO_UNKNOWN);
|
|
|
|
if (tud_control_xfer(rhport, request, (void*)&def_stm_settings,
|
|
|
|
sizeof(video_probe_and_commit_control_t)))
|
|
|
|
return VIDEO_NO_ERROR;
|
2021-07-31 19:35:22 +09:00
|
|
|
return VIDEO_UNKNOWN;
|
|
|
|
case VIDEO_REQUEST_GET_MIN:
|
2021-08-15 18:07:53 +09:00
|
|
|
if (stage != CONTROL_STAGE_SETUP) return VIDEO_NO_ERROR;
|
|
|
|
TU_VERIFY(request->wLength, VIDEO_UNKNOWN);
|
|
|
|
if (tud_control_xfer(rhport, request, (void*)&def_stm_settings,
|
|
|
|
sizeof(video_probe_and_commit_control_t)))
|
|
|
|
return VIDEO_NO_ERROR;
|
2021-07-31 19:35:22 +09:00
|
|
|
return VIDEO_UNKNOWN;
|
|
|
|
case VIDEO_REQUEST_GET_MAX:
|
2021-08-15 18:07:53 +09:00
|
|
|
if (stage != CONTROL_STAGE_SETUP) return VIDEO_NO_ERROR;
|
|
|
|
TU_VERIFY(request->wLength, VIDEO_UNKNOWN);
|
|
|
|
if (tud_control_xfer(rhport, request, (void*)&def_stm_settings,
|
|
|
|
sizeof(video_probe_and_commit_control_t)))
|
|
|
|
return VIDEO_NO_ERROR;
|
2021-07-31 19:35:22 +09:00
|
|
|
return VIDEO_UNKNOWN;
|
|
|
|
case VIDEO_REQUEST_GET_RES:
|
|
|
|
return VIDEO_UNKNOWN;
|
|
|
|
case VIDEO_REQUEST_GET_DEF:
|
|
|
|
return VIDEO_UNKNOWN;
|
|
|
|
case VIDEO_REQUEST_GET_LEN:
|
|
|
|
return VIDEO_UNKNOWN;
|
2021-07-25 14:01:35 +09:00
|
|
|
case VIDEO_REQUEST_GET_INFO:
|
2021-08-15 18:07:53 +09:00
|
|
|
if (stage != CONTROL_STAGE_SETUP) return VIDEO_NO_ERROR;
|
|
|
|
TU_VERIFY(1 == request->wLength, VIDEO_UNKNOWN);
|
|
|
|
if (tud_control_xfer(rhport, request, (uint8_t*)&_cap_get_set, sizeof(_cap_get_set)))
|
|
|
|
return VIDEO_NO_ERROR;
|
2021-07-31 19:35:22 +09:00
|
|
|
return VIDEO_UNKNOWN;
|
2021-07-25 14:01:35 +09:00
|
|
|
default: break;
|
2021-07-19 21:28:05 +09:00
|
|
|
}
|
2021-07-25 14:01:35 +09:00
|
|
|
break;
|
|
|
|
case VIDEO_VS_CTL_COMMIT:
|
2021-07-31 19:35:22 +09:00
|
|
|
switch (request->bRequest) {
|
|
|
|
case VIDEO_REQUEST_SET_CUR:
|
2021-08-15 18:07:53 +09:00
|
|
|
if (stage == CONTROL_STAGE_SETUP) {
|
|
|
|
TU_VERIFY(sizeof(video_probe_and_commit_control_t) == request->wLength, VIDEO_UNKNOWN);
|
2021-09-20 14:55:56 +09:00
|
|
|
if (!tud_control_xfer(rhport, request, self->ep_buf, sizeof(video_probe_and_commit_control_t)))
|
2021-08-15 18:07:53 +09:00
|
|
|
return VIDEO_UNKNOWN;
|
|
|
|
} else if (stage == CONTROL_STAGE_ACK) {
|
|
|
|
if (tud_video_commit_set_cb)
|
2021-09-20 14:55:56 +09:00
|
|
|
return tud_video_commit_set_cb(itf, (video_probe_and_commit_control_t const*)self->ep_buf);
|
2021-08-15 18:07:53 +09:00
|
|
|
}
|
|
|
|
return VIDEO_NO_ERROR;
|
2021-07-25 14:01:35 +09:00
|
|
|
case VIDEO_REQUEST_GET_CUR:
|
2021-08-15 18:07:53 +09:00
|
|
|
if (stage != CONTROL_STAGE_SETUP) return VIDEO_NO_ERROR;
|
|
|
|
TU_VERIFY(request->wLength, VIDEO_UNKNOWN);
|
|
|
|
if (tud_control_xfer(rhport, request, (void*)&def_stm_settings,
|
|
|
|
sizeof(video_probe_and_commit_control_t)))
|
|
|
|
return VIDEO_NO_ERROR;
|
2021-07-31 19:35:22 +09:00
|
|
|
return VIDEO_UNKNOWN;
|
2021-07-25 14:01:35 +09:00
|
|
|
case VIDEO_REQUEST_GET_INFO:
|
2021-08-15 18:07:53 +09:00
|
|
|
if (stage != CONTROL_STAGE_SETUP) return VIDEO_NO_ERROR;
|
|
|
|
TU_VERIFY(1 == request->wLength, VIDEO_UNKNOWN);
|
|
|
|
if (tud_control_xfer(rhport, request, (uint8_t*)&_cap_get_set, sizeof(_cap_get_set)))
|
|
|
|
return VIDEO_NO_ERROR;
|
2021-07-31 19:35:22 +09:00
|
|
|
return VIDEO_UNKNOWN;
|
2021-07-25 14:01:35 +09:00
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
break;
|
2021-08-15 18:07:53 +09:00
|
|
|
case VIDEO_VS_CTL_STILL_PROBE:
|
|
|
|
case VIDEO_VS_CTL_STILL_COMMIT:
|
|
|
|
case VIDEO_VS_CTL_STILL_IMAGE_TRIGGER:
|
|
|
|
case VIDEO_VS_CTL_GENERATE_KEY_FRAME:
|
|
|
|
case VIDEO_VS_CTL_UPDATE_FRAME_SEGMENT:
|
|
|
|
case VIDEO_VS_CTL_SYNCH_DELAY_CONTROL:
|
|
|
|
/* TODO */
|
|
|
|
break;
|
2021-07-25 14:01:35 +09:00
|
|
|
default: break;
|
2021-07-19 21:28:05 +09:00
|
|
|
}
|
2021-07-25 14:01:35 +09:00
|
|
|
/* Unknown/Unsupported request */
|
|
|
|
TU_BREAKPOINT();
|
|
|
|
return VIDEO_INVALID_REQUEST;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int handle_video_stm_req(uint8_t rhport, uint8_t stage, tusb_control_request_t const *request, unsigned itf)
|
|
|
|
{
|
2021-07-31 19:35:22 +09:00
|
|
|
switch (request->bmRequestType_bit.type) {
|
2021-07-25 14:01:35 +09:00
|
|
|
case TUSB_REQ_TYPE_STANDARD:
|
|
|
|
return handle_video_stm_std_req(rhport, stage, request, itf);
|
|
|
|
case TUSB_REQ_TYPE_CLASS:
|
|
|
|
if (TU_U16_HIGH(request->wIndex))
|
|
|
|
return VIDEO_INVALID_REQUEST;
|
|
|
|
return handle_video_stm_cs_req(rhport, stage, request, itf);
|
|
|
|
default:
|
|
|
|
return VIDEO_INVALID_REQUEST;
|
|
|
|
}
|
|
|
|
return VIDEO_UNKNOWN;
|
2021-07-19 21:28:05 +09:00
|
|
|
}
|
|
|
|
|
2021-07-17 18:51:33 +09:00
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
// APPLICATION API
|
|
|
|
//--------------------------------------------------------------------+
|
2021-09-20 14:55:56 +09:00
|
|
|
/* itf streaming interface number */
|
|
|
|
bool tud_video_n_streaming(uint8_t itf)
|
|
|
|
{
|
|
|
|
videod_streaming_interface_t *stm = &_videod_streaming_itf[itf];
|
|
|
|
if (stm->desc.ep[0])
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-07-17 18:51:33 +09:00
|
|
|
bool tud_video_n_connected(uint8_t itf)
|
|
|
|
{
|
2021-07-31 19:35:22 +09:00
|
|
|
(void)itf;
|
2021-07-17 18:51:33 +09:00
|
|
|
// DTR (bit 0) active is considered as connected
|
2021-07-31 19:35:22 +09:00
|
|
|
return tud_ready();
|
2021-07-17 18:51:33 +09:00
|
|
|
}
|
|
|
|
|
2021-09-20 14:55:56 +09:00
|
|
|
int tud_video_n_frame_xfer(uint8_t itf, uint32_t pts, void *buffer, size_t bufsize)
|
|
|
|
{
|
|
|
|
(void)pts;
|
|
|
|
|
|
|
|
if (!tud_video_n_streaming(itf))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
videod_streaming_interface_t *stm = &_videod_streaming_itf[itf];
|
|
|
|
stm->buffer = (uint8_t*)buffer;
|
|
|
|
stm->bufsize = bufsize;
|
|
|
|
TU_LOG1(" xfer %d\n", bufsize);
|
|
|
|
_payload_xfer_in(0, itf);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-07-17 18:51:33 +09:00
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
// READ API
|
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
// WRITE API
|
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
// USBD Driver API
|
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
void videod_init(void)
|
|
|
|
{
|
|
|
|
tu_memclr(_videod_itf, sizeof(_videod_itf));
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < CFG_TUD_VIDEO; ++i)
|
|
|
|
{
|
2021-07-31 19:35:22 +09:00
|
|
|
// videod_interface_t* p_video = &_videod_itf[i];
|
2021-07-17 18:51:33 +09:00
|
|
|
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void videod_reset(uint8_t rhport)
|
|
|
|
{
|
|
|
|
(void) rhport;
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < CFG_TUD_VIDEO; ++i)
|
|
|
|
{
|
|
|
|
videod_interface_t* p_video = &_videod_itf[i];
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
tu_memclr(p_video, ITF_MEM_RESET_SIZE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint16_t videod_open(uint8_t rhport, tusb_desc_interface_t const * itf_desc, uint16_t max_len)
|
|
|
|
{
|
2021-07-31 19:35:22 +09:00
|
|
|
TU_VERIFY((TUSB_CLASS_VIDEO == itf_desc->bInterfaceClass) &&
|
2021-08-15 18:07:53 +09:00
|
|
|
(VIDEO_SUBCLASS_CONTROL == itf_desc->bInterfaceSubClass) &&
|
|
|
|
(VIDEO_INT_PROTOCOL_CODE_15 == itf_desc->bInterfaceProtocol), 0);
|
2021-07-17 18:51:33 +09:00
|
|
|
|
|
|
|
/* Find available interface */
|
2021-07-19 21:28:05 +09:00
|
|
|
videod_interface_t *self = NULL;
|
2021-09-20 14:55:56 +09:00
|
|
|
unsigned itf;
|
|
|
|
for (itf = 0; itf < CFG_TUD_VIDEO; ++itf) {
|
|
|
|
if (_videod_itf[itf].beg)
|
|
|
|
continue;
|
|
|
|
self = &_videod_itf[itf];
|
|
|
|
break;
|
2021-07-17 18:51:33 +09:00
|
|
|
}
|
2021-09-20 14:55:56 +09:00
|
|
|
TU_ASSERT(itf < CFG_TUD_VIDEO, 0);
|
2021-07-17 18:51:33 +09:00
|
|
|
|
2021-07-19 21:28:05 +09:00
|
|
|
void const *end = (void const*)itf_desc + max_len;
|
|
|
|
self->beg = itf_desc;
|
2021-07-25 14:01:35 +09:00
|
|
|
self->len = max_len;
|
2021-07-17 18:51:33 +09:00
|
|
|
/*------------- Video Control Interface -------------*/
|
2021-09-20 14:55:56 +09:00
|
|
|
if (!_open_vc_itf(rhport, self, 0))
|
|
|
|
return 0;
|
2021-07-25 14:01:35 +09:00
|
|
|
tusb_desc_vc_itf_t const *vc = _get_desc_vc(self);
|
|
|
|
unsigned bInCollection = vc->ctl.bInCollection;
|
2021-08-15 18:07:53 +09:00
|
|
|
/* Find the end of the video interface descriptor */
|
2021-07-25 14:01:35 +09:00
|
|
|
void const *cur = _next_desc_itf(itf_desc, end);
|
|
|
|
for (unsigned i = 0; i < bInCollection; ++i) {
|
2021-09-20 14:55:56 +09:00
|
|
|
videod_streaming_interface_t *stm = NULL;
|
|
|
|
/* find free streaming interface handle */
|
|
|
|
for (unsigned j = 0; j < TU_ARRAY_SIZE(_videod_streaming_itf); ++j) {
|
|
|
|
if (_videod_streaming_itf[i].desc.beg)
|
|
|
|
continue;
|
|
|
|
stm = &_videod_streaming_itf[i];
|
|
|
|
self->stm[i] = j;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
TU_ASSERT(stm, 0);
|
|
|
|
stm->index_vc = itf;
|
|
|
|
stm->desc.beg = (uintptr_t)cur - (uintptr_t)itf_desc;
|
2021-07-25 14:01:35 +09:00
|
|
|
cur = _next_desc_itf(cur, end);
|
2021-09-20 14:55:56 +09:00
|
|
|
stm->desc.end = (uintptr_t)cur - (uintptr_t)itf_desc;
|
2021-07-25 14:01:35 +09:00
|
|
|
}
|
|
|
|
self->len = (uintptr_t)cur - (uintptr_t)itf_desc;
|
2021-08-01 17:11:43 +09:00
|
|
|
return (uintptr_t)cur - (uintptr_t)itf_desc;
|
2021-07-17 18:51:33 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
// Invoked when a control transfer occurred on an interface of this class
|
|
|
|
// Driver response accordingly to the request and the transfer stage (setup/data/ack)
|
|
|
|
// return false to stall control endpoint (e.g unsupported request)
|
|
|
|
bool videod_control_xfer_cb(uint8_t rhport, uint8_t stage, tusb_control_request_t const * request)
|
|
|
|
{
|
2021-07-25 14:01:35 +09:00
|
|
|
int err;
|
2021-07-31 19:35:22 +09:00
|
|
|
if (request->bmRequestType_bit.recipient != TUSB_REQ_RCPT_INTERFACE) {
|
2021-07-19 21:28:05 +09:00
|
|
|
return false;
|
|
|
|
}
|
2021-07-31 19:35:22 +09:00
|
|
|
unsigned itfnum = tu_u16_low(request->wIndex);
|
2021-09-20 14:55:56 +09:00
|
|
|
|
|
|
|
/* Identify which control interface to use */
|
|
|
|
int itf = -1;
|
|
|
|
for (unsigned i = 0; i < CFG_TUD_VIDEO; ++i) {
|
|
|
|
void const *desc = _videod_itf[i].beg;
|
|
|
|
if (!desc) break;
|
|
|
|
if (itfnum == _desc_itfnum(desc)) {
|
|
|
|
itf = i;
|
2021-07-19 21:28:05 +09:00
|
|
|
break;
|
2021-08-04 00:32:16 +09:00
|
|
|
}
|
2021-09-20 14:55:56 +09:00
|
|
|
}
|
|
|
|
if (itf >= 0) {
|
|
|
|
err = handle_video_ctl_req(rhport, stage, request, itf);
|
|
|
|
_videod_itf[itf].error_code = (uint8_t)err;
|
|
|
|
if (err) return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Identify which streaming interface to use */
|
|
|
|
for (unsigned i = 0; i < CFG_TUD_VIDEO_STREAMING; ++i) {
|
|
|
|
videod_streaming_interface_t *stm = &_videod_streaming_itf[i];
|
|
|
|
if (!stm->desc.beg) return false;
|
|
|
|
void const *desc = _videod_itf[stm->index_vc].beg;
|
|
|
|
if (itfnum == _desc_itfnum(desc + stm->desc.beg)) {
|
|
|
|
itf = i;
|
2021-08-04 00:32:16 +09:00
|
|
|
break;
|
|
|
|
}
|
2021-07-17 18:51:33 +09:00
|
|
|
}
|
2021-09-20 14:55:56 +09:00
|
|
|
if (itf >= 0) {
|
|
|
|
err = handle_video_stm_req(rhport, stage, request, itf);
|
|
|
|
_videod_streaming_itf[itf].error_code = (uint8_t)err;
|
|
|
|
if (err) return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2021-07-17 18:51:33 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
bool videod_xfer_cb(uint8_t rhport, uint8_t ep_addr, xfer_result_t result, uint32_t xferred_bytes)
|
|
|
|
{
|
2021-09-20 14:55:56 +09:00
|
|
|
(void)rhport; (void)result; (void)xferred_bytes;
|
|
|
|
|
|
|
|
/* find streaming handle */
|
|
|
|
unsigned i;
|
|
|
|
for (i = 0; i < CFG_TUD_VIDEO_STREAMING; ++i) {
|
|
|
|
videod_streaming_interface_t *stm = &_videod_streaming_itf[i];
|
|
|
|
unsigned const ep_ofs = stm->desc.ep[0];
|
|
|
|
if (!ep_ofs) continue;
|
|
|
|
void const *desc = _videod_itf[stm->index_vc].beg;
|
|
|
|
if (ep_addr == _desc_ep_addr(desc + ep_ofs))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
TU_ASSERT(i < CFG_TUD_VIDEO_STREAMING);
|
|
|
|
_payload_xfer_in(rhport, i);
|
|
|
|
return true;
|
2021-07-17 18:51:33 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|