97 lines
4.9 KiB
C
97 lines
4.9 KiB
C
|
/*
|
||
|
* The MIT License (MIT)
|
||
|
*
|
||
|
* Copyright (c) 2019 Ha Thach (tinyusb.org)
|
||
|
* Copyright (c) 2022 TinyVision.ai Inc.
|
||
|
*
|
||
|
* 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.
|
||
|
*/
|
||
|
|
||
|
#include "ice_usb.h"
|
||
|
|
||
|
#define UVC_ENTITY_CAP_INPUT_TERMINAL 0x01
|
||
|
#define UVC_ENTITY_CAP_OUTPUT_TERMINAL 0x02
|
||
|
#define UVC_CLOCK_FREQUENCY 27000000
|
||
|
|
||
|
enum { STRID_VIDEO = 5 };
|
||
|
|
||
|
#define TUD_VIDEO_DESC_CS_VS_FMT_YUY2(_fmtidx, _numfmtdesc, _frmidx, _asrx, _asry, _interlace, _cp) \
|
||
|
TUD_VIDEO_DESC_CS_VS_FMT_UNCOMPR(_fmtidx, _numfmtdesc, TUD_VIDEO_GUID_YUY2, 16, _frmidx, _asrx, _asry, _interlace, _cp)
|
||
|
|
||
|
#define TUD_VIDEO_CAPTURE_DESCRIPTOR_UNCOMPR(_stridx, _epin, _width, _height, _fps, _epsize) \
|
||
|
TUD_VIDEO_DESC_IAD(ITF_NUM_VIDEO_CONTROL, /* 2 Interfaces */ 0x02, _stridx), \
|
||
|
/* Video control 0 */ \
|
||
|
TUD_VIDEO_DESC_STD_VC(ITF_NUM_VIDEO_CONTROL, 0, _stridx), \
|
||
|
/* Header: UVC 1.5, length of followed descs, clock (deprecated), streaming interfaces */ \
|
||
|
TUD_VIDEO_DESC_CS_VC(0x0150, TUD_VIDEO_DESC_CAMERA_TERM_LEN + TUD_VIDEO_DESC_OUTPUT_TERM_LEN, UVC_CLOCK_FREQUENCY, ITF_NUM_VIDEO_STREAMING), \
|
||
|
/* Camera Terminal: ID, bAssocTerminal, iTerminal, focal min, max, length, bmControl */ \
|
||
|
TUD_VIDEO_DESC_CAMERA_TERM(UVC_ENTITY_CAP_INPUT_TERMINAL, 0, 0, 0, 0, 0, 0), \
|
||
|
TUD_VIDEO_DESC_OUTPUT_TERM(UVC_ENTITY_CAP_OUTPUT_TERMINAL, VIDEO_TT_STREAMING, 0, UVC_ENTITY_CAP_INPUT_TERMINAL, 0), \
|
||
|
/* Video stream alt. 0 */ \
|
||
|
TUD_VIDEO_DESC_STD_VS(ITF_NUM_VIDEO_STREAMING, 0, 0, _stridx), \
|
||
|
/* Video stream header for without still image capture */ \
|
||
|
TUD_VIDEO_DESC_CS_VS_INPUT( /*bNumFormats*/1, \
|
||
|
/*wTotalLength - bLength */ TUD_VIDEO_DESC_CS_VS_FMT_UNCOMPR_LEN + TUD_VIDEO_DESC_CS_VS_FRM_UNCOMPR_CONT_LEN + TUD_VIDEO_DESC_CS_VS_COLOR_MATCHING_LEN,\
|
||
|
_epin, /*bmInfo*/0, /*bTerminalLink*/UVC_ENTITY_CAP_OUTPUT_TERMINAL, \
|
||
|
/*bStillCaptureMethod*/0, /*bTriggerSupport*/0, /*bTriggerUsage*/0, \
|
||
|
/*bmaControls(1)*/0), \
|
||
|
/* Video stream format */ \
|
||
|
TUD_VIDEO_DESC_CS_VS_FMT_YUY2(/*bFormatIndex*/1, /*bNumFrameDescriptors*/1, \
|
||
|
/*bDefaultFrameIndex*/1, 0, 0, 0, /*bCopyProtect*/0), \
|
||
|
/* Video stream frame format */ \
|
||
|
TUD_VIDEO_DESC_CS_VS_FRM_UNCOMPR_CONT(/*bFrameIndex */1, 0, _width, _height, \
|
||
|
_width * _height * 16, _width * _height * 16 * _fps, \
|
||
|
_width * _height * 16 / 8, \
|
||
|
(10000000/_fps), (10000000/_fps), (10000000/_fps)*_fps, (10000000/_fps)), \
|
||
|
TUD_VIDEO_DESC_CS_VS_COLOR_MATCHING(VIDEO_COLOR_PRIMARIES_BT709, VIDEO_COLOR_XFER_CH_BT709, VIDEO_COLOR_COEF_SMPTE170M), \
|
||
|
/* VS alt 1 */\
|
||
|
TUD_VIDEO_DESC_STD_VS(ITF_NUM_VIDEO_STREAMING, 1, 1, _stridx), \
|
||
|
/* EP */ \
|
||
|
TUD_VIDEO_DESC_EP_ISO(_epin, _epsize, 1)
|
||
|
|
||
|
enum {
|
||
|
ITF_NUM_CDC0, ITF_NUM_CDC0_DATA,
|
||
|
ITF_NUM_MSC0,
|
||
|
ITF_NUM_DFU,
|
||
|
ITF_NUM_VIDEO_CONTROL,
|
||
|
ITF_NUM_VIDEO_STREAMING,
|
||
|
ITF_NUM_TOTAL
|
||
|
};
|
||
|
|
||
|
uint8_t const tud_desc_configuration[CONFIG_TOTAL_LEN] = {
|
||
|
TUD_CONFIG_DESCRIPTOR(1, ITF_NUM_TOTAL, 0, CONFIG_TOTAL_LEN, 0x00, 500/*mA*/),
|
||
|
TUD_CDC_DESCRIPTOR(ITF_NUM_CDC0, STRID_CDC+0, EPIN+1, 8, EPOUT+2, EPIN+2, 64),
|
||
|
TUD_MSC_DESCRIPTOR(ITF_NUM_MSC0, STRID_MSC+0, EPOUT+3, EPIN+3, 64),
|
||
|
TUD_DFU_DESCRIPTOR(ITF_NUM_DFU, CFG_TUD_DFU_ALT, STRID_DFU, DFU_ATTR_CAN_DOWNLOAD, 1000, CFG_TUD_DFU_XFER_BUFSIZE),
|
||
|
TUD_VIDEO_CAPTURE_DESCRIPTOR_UNCOMPR(STRID_VIDEO, EPIN+4, FRAME_WIDTH, FRAME_HEIGHT, FRAME_RATE, CFG_TUD_VIDEO_STREAMING_EP_BUFSIZE)
|
||
|
};
|
||
|
|
||
|
char const *tud_string_desc[STRID_NUM_TOTAL] = {
|
||
|
[STRID_LANGID] = USB_LANG_EN,
|
||
|
[STRID_MANUFACTURER] = USB_MANUFACTURER,
|
||
|
[STRID_PRODUCT] = USB_PRODUCT,
|
||
|
[STRID_SERIAL_NUMBER] = usb_serial_number,
|
||
|
[STRID_VENDOR] = USB_VENDOR,
|
||
|
[STRID_VIDEO] = "RP2040 camera",
|
||
|
[STRID_CDC+0] = "RP2040 logs",
|
||
|
[STRID_MSC+0] = "iCE40 MSC (Flash)",
|
||
|
[STRID_DFU+0] = "iCE40 DFU (Flash)",
|
||
|
[STRID_DFU+1] = "iCE40 DFU (CRAM)"
|
||
|
};
|