|
@@ -4,161 +4,106 @@
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
*/
|
|
*/
|
|
|
#include "usbd_core.h"
|
|
#include "usbd_core.h"
|
|
|
-#include "usbd_cdc_acm.h"
|
|
|
|
|
|
|
|
|
|
-#define WCID_VENDOR_CODE 0x17
|
|
|
|
|
|
|
+#define WINUSB_VENDOR_CODE 0x17
|
|
|
|
|
|
|
|
-#define DOUBLE_WINUSB 0
|
|
|
|
|
|
|
+#define WINUSB_NUM 1
|
|
|
|
|
|
|
|
-__ALIGN_BEGIN const uint8_t WCID_StringDescriptor_MSOS[18] __ALIGN_END = {
|
|
|
|
|
- ///////////////////////////////////////
|
|
|
|
|
- /// MS OS string descriptor
|
|
|
|
|
- ///////////////////////////////////////
|
|
|
|
|
- 0x12, /* bLength */
|
|
|
|
|
- USB_DESCRIPTOR_TYPE_STRING, /* bDescriptorType */
|
|
|
|
|
- /* MSFT100 */
|
|
|
|
|
- 'M', 0x00, 'S', 0x00, 'F', 0x00, 'T', 0x00, /* wcChar_7 */
|
|
|
|
|
- '1', 0x00, '0', 0x00, '0', 0x00, /* wcChar_7 */
|
|
|
|
|
- WCID_VENDOR_CODE, /* bVendorCode */
|
|
|
|
|
- 0x00, /* bReserved */
|
|
|
|
|
|
|
+const uint8_t WCID_StringDescriptor_MSOS[18] = {
|
|
|
|
|
+ USB_MSOSV1_STRING_DESCRIPTOR_INIT(WINUSB_VENDOR_CODE)
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
|
|
+const uint8_t WINUSB_WCIDDescriptor[] = {
|
|
|
|
|
+ USB_MSOSV1_COMP_ID_HEADER_DESCRIPTOR_INIT(WINUSB_NUM),
|
|
|
|
|
+ USB_MSOSV1_COMP_ID_FUNCTION_WINUSB_DESCRIPTOR_INIT(0),
|
|
|
|
|
+#if WINUSB_NUM == 2
|
|
|
|
|
+ USB_MSOSV1_COMP_ID_FUNCTION_WINUSB_DESCRIPTOR_INIT(1),
|
|
|
|
|
+#endif
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
-#if DOUBLE_WINUSB == 0
|
|
|
|
|
-__ALIGN_BEGIN const uint8_t WINUSB_WCIDDescriptor[40] __ALIGN_END = {
|
|
|
|
|
|
|
+const uint8_t WINUSB_IF0_WCIDProperties[142] = {
|
|
|
///////////////////////////////////////
|
|
///////////////////////////////////////
|
|
|
- /// WCID descriptor
|
|
|
|
|
|
|
+ /// WCID property descriptor
|
|
|
///////////////////////////////////////
|
|
///////////////////////////////////////
|
|
|
- 0x28, 0x00, 0x00, 0x00, /* dwLength */
|
|
|
|
|
- 0x00, 0x01, /* bcdVersion */
|
|
|
|
|
- 0x04, 0x00, /* wIndex */
|
|
|
|
|
- 0x01, /* bCount */
|
|
|
|
|
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* bReserved_7 */
|
|
|
|
|
|
|
+ 0x8e, 0x00, 0x00, 0x00, /* dwLength */
|
|
|
|
|
+ 0x00, 0x01, /* bcdVersion */
|
|
|
|
|
+ 0x05, 0x00, /* wIndex */
|
|
|
|
|
+ 0x01, 0x00, /* wCount */
|
|
|
|
|
|
|
|
///////////////////////////////////////
|
|
///////////////////////////////////////
|
|
|
- /// WCID function descriptor
|
|
|
|
|
|
|
+ /// registry propter descriptor
|
|
|
///////////////////////////////////////
|
|
///////////////////////////////////////
|
|
|
- 0x00, /* bFirstInterfaceNumber */
|
|
|
|
|
- 0x01, /* bReserved */
|
|
|
|
|
- /* WINUSB */
|
|
|
|
|
- 'W', 'I', 'N', 'U', 'S', 'B', 0x00, 0x00, /* cCID_8 */
|
|
|
|
|
- /* */
|
|
|
|
|
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* cSubCID_8 */
|
|
|
|
|
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* bReserved_6 */
|
|
|
|
|
|
|
+ 0x84, 0x00, 0x00, 0x00, /* dwSize */
|
|
|
|
|
+ 0x01, 0x00, 0x00, 0x00, /* dwPropertyDataType */
|
|
|
|
|
+ 0x28, 0x00, /* wPropertyNameLength */
|
|
|
|
|
+ /* DeviceInterfaceGUID */
|
|
|
|
|
+ 'D', 0x00, 'e', 0x00, 'v', 0x00, 'i', 0x00, /* wcName_20 */
|
|
|
|
|
+ 'c', 0x00, 'e', 0x00, 'I', 0x00, 'n', 0x00, /* wcName_20 */
|
|
|
|
|
+ 't', 0x00, 'e', 0x00, 'r', 0x00, 'f', 0x00, /* wcName_20 */
|
|
|
|
|
+ 'a', 0x00, 'c', 0x00, 'e', 0x00, 'G', 0x00, /* wcName_20 */
|
|
|
|
|
+ 'U', 0x00, 'I', 0x00, 'D', 0x00, 0x00, 0x00, /* wcName_20 */
|
|
|
|
|
+ 0x4e, 0x00, 0x00, 0x00, /* dwPropertyDataLength */
|
|
|
|
|
+ /* {1D4B2365-4749-48EA-B38A-7C6FDDDD7E26} */
|
|
|
|
|
+ '{', 0x00, '1', 0x00, 'D', 0x00, '4', 0x00, /* wcData_39 */
|
|
|
|
|
+ 'B', 0x00, '2', 0x00, '3', 0x00, '6', 0x00, /* wcData_39 */
|
|
|
|
|
+ '5', 0x00, '-', 0x00, '4', 0x00, '7', 0x00, /* wcData_39 */
|
|
|
|
|
+ '4', 0x00, '9', 0x00, '-', 0x00, '4', 0x00, /* wcData_39 */
|
|
|
|
|
+ '8', 0x00, 'E', 0x00, 'A', 0x00, '-', 0x00, /* wcData_39 */
|
|
|
|
|
+ 'B', 0x00, '3', 0x00, '8', 0x00, 'A', 0x00, /* wcData_39 */
|
|
|
|
|
+ '-', 0x00, '7', 0x00, 'C', 0x00, '6', 0x00, /* wcData_39 */
|
|
|
|
|
+ 'F', 0x00, 'D', 0x00, 'D', 0x00, 'D', 0x00, /* wcData_39 */
|
|
|
|
|
+ 'D', 0x00, '7', 0x00, 'E', 0x00, '2', 0x00, /* wcData_39 */
|
|
|
|
|
+ '6', 0x00, '}', 0x00, 0x00, 0x00, /* wcData_39 */
|
|
|
};
|
|
};
|
|
|
-#else
|
|
|
|
|
-__ALIGN_BEGIN const uint8_t WINUSB_WCIDDescriptor[64] __ALIGN_END = {
|
|
|
|
|
- ///////////////////////////////////////
|
|
|
|
|
- /// WCID descriptor
|
|
|
|
|
- ///////////////////////////////////////
|
|
|
|
|
- 0x40, 0x00, 0x00, 0x00, /* dwLength */
|
|
|
|
|
- 0x00, 0x01, /* bcdVersion */
|
|
|
|
|
- 0x04, 0x00, /* wIndex */
|
|
|
|
|
- 0x02, /* bCount */
|
|
|
|
|
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* bReserved_7 */
|
|
|
|
|
|
|
|
|
|
|
|
+#if WINUSB_NUM == 2
|
|
|
|
|
+#define WINUSB_IF1_WCID_PROPERTIES_SIZE (142)
|
|
|
|
|
+const uint8_t WINUSB_IF1_WCIDProperties[142] = {
|
|
|
///////////////////////////////////////
|
|
///////////////////////////////////////
|
|
|
- /// WCID function descriptor
|
|
|
|
|
|
|
+ /// WCID property descriptor
|
|
|
///////////////////////////////////////
|
|
///////////////////////////////////////
|
|
|
- 0x00, /* bFirstInterfaceNumber */
|
|
|
|
|
- 0x01, /* bReserved */
|
|
|
|
|
- /* WINUSB */
|
|
|
|
|
- 'W', 'I', 'N', 'U', 'S', 'B', 0x00, 0x00, /* cCID_8 */
|
|
|
|
|
- /* */
|
|
|
|
|
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* cSubCID_8 */
|
|
|
|
|
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* bReserved_6 */
|
|
|
|
|
|
|
+ 0x8e, 0x00, 0x00, 0x00, /* dwLength */
|
|
|
|
|
+ 0x00, 0x01, /* bcdVersion */
|
|
|
|
|
+ 0x05, 0x00, /* wIndex */
|
|
|
|
|
+ 0x01, 0x00, /* wCount */
|
|
|
|
|
|
|
|
///////////////////////////////////////
|
|
///////////////////////////////////////
|
|
|
- /// WCID function descriptor
|
|
|
|
|
|
|
+ /// registry propter descriptor
|
|
|
///////////////////////////////////////
|
|
///////////////////////////////////////
|
|
|
- 0x01, /* bFirstInterfaceNumber */
|
|
|
|
|
- 0x01, /* bReserved */
|
|
|
|
|
- /* WINUSB */
|
|
|
|
|
- 'W', 'I', 'N', 'U', 'S', 'B', 0x00, 0x00, /* cCID_8 */
|
|
|
|
|
- /* */
|
|
|
|
|
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* cSubCID_8 */
|
|
|
|
|
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* bReserved_6 */
|
|
|
|
|
|
|
+ 0x84, 0x00, 0x00, 0x00, /* dwSize */
|
|
|
|
|
+ 0x01, 0x00, 0x00, 0x00, /* dwPropertyDataType */
|
|
|
|
|
+ 0x28, 0x00, /* wPropertyNameLength */
|
|
|
|
|
+ /* DeviceInterfaceGUID */
|
|
|
|
|
+ 'D', 0x00, 'e', 0x00, 'v', 0x00, 'i', 0x00, /* wcName_20 */
|
|
|
|
|
+ 'c', 0x00, 'e', 0x00, 'I', 0x00, 'n', 0x00, /* wcName_20 */
|
|
|
|
|
+ 't', 0x00, 'e', 0x00, 'r', 0x00, 'f', 0x00, /* wcName_20 */
|
|
|
|
|
+ 'a', 0x00, 'c', 0x00, 'e', 0x00, 'G', 0x00, /* wcName_20 */
|
|
|
|
|
+ 'U', 0x00, 'I', 0x00, 'D', 0x00, 0x00, 0x00, /* wcName_20 */
|
|
|
|
|
+ 0x4e, 0x00, 0x00, 0x00, /* dwPropertyDataLength */
|
|
|
|
|
+ /* {1D4B2365-4749-48EA-B38A-7C6FDDDD7E26} */
|
|
|
|
|
+ '{', 0x00, '1', 0x00, 'D', 0x00, '4', 0x00, /* wcData_39 */
|
|
|
|
|
+ 'B', 0x00, '2', 0x00, '3', 0x00, '6', 0x00, /* wcData_39 */
|
|
|
|
|
+ '5', 0x00, '-', 0x00, '4', 0x00, '7', 0x00, /* wcData_39 */
|
|
|
|
|
+ '4', 0x00, '9', 0x00, '-', 0x00, '4', 0x00, /* wcData_39 */
|
|
|
|
|
+ '8', 0x00, 'E', 0x00, 'A', 0x00, '-', 0x00, /* wcData_39 */
|
|
|
|
|
+ 'B', 0x00, '3', 0x00, '8', 0x00, 'A', 0x00, /* wcData_39 */
|
|
|
|
|
+ '-', 0x00, '7', 0x00, 'C', 0x00, '6', 0x00, /* wcData_39 */
|
|
|
|
|
+ 'F', 0x00, 'D', 0x00, 'D', 0x00, 'D', 0x00, /* wcData_39 */
|
|
|
|
|
+ 'D', 0x00, '7', 0x00, 'E', 0x00, '2', 0x00, /* wcData_39 */
|
|
|
|
|
+ '6', 0x00, '}', 0x00, 0x00, 0x00, /* wcData_39 */
|
|
|
};
|
|
};
|
|
|
#endif
|
|
#endif
|
|
|
-__ALIGN_BEGIN const uint8_t WINUSB_IF0_WCIDProperties [142] __ALIGN_END = {
|
|
|
|
|
- ///////////////////////////////////////
|
|
|
|
|
- /// WCID property descriptor
|
|
|
|
|
- ///////////////////////////////////////
|
|
|
|
|
- 0x8e, 0x00, 0x00, 0x00, /* dwLength */
|
|
|
|
|
- 0x00, 0x01, /* bcdVersion */
|
|
|
|
|
- 0x05, 0x00, /* wIndex */
|
|
|
|
|
- 0x01, 0x00, /* wCount */
|
|
|
|
|
-
|
|
|
|
|
- ///////////////////////////////////////
|
|
|
|
|
- /// registry propter descriptor
|
|
|
|
|
- ///////////////////////////////////////
|
|
|
|
|
- 0x84, 0x00, 0x00, 0x00, /* dwSize */
|
|
|
|
|
- 0x01, 0x00, 0x00, 0x00, /* dwPropertyDataType */
|
|
|
|
|
- 0x28, 0x00, /* wPropertyNameLength */
|
|
|
|
|
- /* DeviceInterfaceGUID */
|
|
|
|
|
- 'D', 0x00, 'e', 0x00, 'v', 0x00, 'i', 0x00, /* wcName_20 */
|
|
|
|
|
- 'c', 0x00, 'e', 0x00, 'I', 0x00, 'n', 0x00, /* wcName_20 */
|
|
|
|
|
- 't', 0x00, 'e', 0x00, 'r', 0x00, 'f', 0x00, /* wcName_20 */
|
|
|
|
|
- 'a', 0x00, 'c', 0x00, 'e', 0x00, 'G', 0x00, /* wcName_20 */
|
|
|
|
|
- 'U', 0x00, 'I', 0x00, 'D', 0x00, 0x00, 0x00, /* wcName_20 */
|
|
|
|
|
- 0x4e, 0x00, 0x00, 0x00, /* dwPropertyDataLength */
|
|
|
|
|
- /* {1D4B2365-4749-48EA-B38A-7C6FDDDD7E26} */
|
|
|
|
|
- '{', 0x00, '1', 0x00, 'D', 0x00, '4', 0x00, /* wcData_39 */
|
|
|
|
|
- 'B', 0x00, '2', 0x00, '3', 0x00, '6', 0x00, /* wcData_39 */
|
|
|
|
|
- '5', 0x00, '-', 0x00, '4', 0x00, '7', 0x00, /* wcData_39 */
|
|
|
|
|
- '4', 0x00, '9', 0x00, '-', 0x00, '4', 0x00, /* wcData_39 */
|
|
|
|
|
- '8', 0x00, 'E', 0x00, 'A', 0x00, '-', 0x00, /* wcData_39 */
|
|
|
|
|
- 'B', 0x00, '3', 0x00, '8', 0x00, 'A', 0x00, /* wcData_39 */
|
|
|
|
|
- '-', 0x00, '7', 0x00, 'C', 0x00, '6', 0x00, /* wcData_39 */
|
|
|
|
|
- 'F', 0x00, 'D', 0x00, 'D', 0x00, 'D', 0x00, /* wcData_39 */
|
|
|
|
|
- 'D', 0x00, '7', 0x00, 'E', 0x00, '2', 0x00, /* wcData_39 */
|
|
|
|
|
- '6', 0x00, '}', 0x00, 0x00, 0x00, /* wcData_39 */
|
|
|
|
|
-};
|
|
|
|
|
-#define WINUSB_IF1_WCID_PROPERTIES_SIZE (142)
|
|
|
|
|
-__ALIGN_BEGIN const uint8_t WINUSB_IF1_WCIDProperties [142] __ALIGN_END = {
|
|
|
|
|
- ///////////////////////////////////////
|
|
|
|
|
- /// WCID property descriptor
|
|
|
|
|
- ///////////////////////////////////////
|
|
|
|
|
- 0x8e, 0x00, 0x00, 0x00, /* dwLength */
|
|
|
|
|
- 0x00, 0x01, /* bcdVersion */
|
|
|
|
|
- 0x05, 0x00, /* wIndex */
|
|
|
|
|
- 0x01, 0x00, /* wCount */
|
|
|
|
|
-
|
|
|
|
|
- ///////////////////////////////////////
|
|
|
|
|
- /// registry propter descriptor
|
|
|
|
|
- ///////////////////////////////////////
|
|
|
|
|
- 0x84, 0x00, 0x00, 0x00, /* dwSize */
|
|
|
|
|
- 0x01, 0x00, 0x00, 0x00, /* dwPropertyDataType */
|
|
|
|
|
- 0x28, 0x00, /* wPropertyNameLength */
|
|
|
|
|
- /* DeviceInterfaceGUID */
|
|
|
|
|
- 'D', 0x00, 'e', 0x00, 'v', 0x00, 'i', 0x00, /* wcName_20 */
|
|
|
|
|
- 'c', 0x00, 'e', 0x00, 'I', 0x00, 'n', 0x00, /* wcName_20 */
|
|
|
|
|
- 't', 0x00, 'e', 0x00, 'r', 0x00, 'f', 0x00, /* wcName_20 */
|
|
|
|
|
- 'a', 0x00, 'c', 0x00, 'e', 0x00, 'G', 0x00, /* wcName_20 */
|
|
|
|
|
- 'U', 0x00, 'I', 0x00, 'D', 0x00, 0x00, 0x00, /* wcName_20 */
|
|
|
|
|
- 0x4e, 0x00, 0x00, 0x00, /* dwPropertyDataLength */
|
|
|
|
|
- /* {1D4B2365-4749-48EA-B38A-7C6FDDDD7E26} */
|
|
|
|
|
- '{', 0x00, '1', 0x00, 'D', 0x00, '4', 0x00, /* wcData_39 */
|
|
|
|
|
- 'B', 0x00, '2', 0x00, '3', 0x00, '6', 0x00, /* wcData_39 */
|
|
|
|
|
- '5', 0x00, '-', 0x00, '4', 0x00, '7', 0x00, /* wcData_39 */
|
|
|
|
|
- '4', 0x00, '9', 0x00, '-', 0x00, '4', 0x00, /* wcData_39 */
|
|
|
|
|
- '8', 0x00, 'E', 0x00, 'A', 0x00, '-', 0x00, /* wcData_39 */
|
|
|
|
|
- 'B', 0x00, '3', 0x00, '8', 0x00, 'A', 0x00, /* wcData_39 */
|
|
|
|
|
- '-', 0x00, '7', 0x00, 'C', 0x00, '6', 0x00, /* wcData_39 */
|
|
|
|
|
- 'F', 0x00, 'D', 0x00, 'D', 0x00, 'D', 0x00, /* wcData_39 */
|
|
|
|
|
- 'D', 0x00, '7', 0x00, 'E', 0x00, '2', 0x00, /* wcData_39 */
|
|
|
|
|
- '6', 0x00, '}', 0x00, 0x00, 0x00, /* wcData_39 */
|
|
|
|
|
-};
|
|
|
|
|
|
|
|
|
|
const uint8_t *WINUSB_IFx_WCIDProperties[] = {
|
|
const uint8_t *WINUSB_IFx_WCIDProperties[] = {
|
|
|
WINUSB_IF0_WCIDProperties,
|
|
WINUSB_IF0_WCIDProperties,
|
|
|
-#if DOUBLE_WINUSB == 1
|
|
|
|
|
|
|
+#if WINUSB_NUM == 2
|
|
|
WINUSB_IF1_WCIDProperties,
|
|
WINUSB_IF1_WCIDProperties,
|
|
|
#endif
|
|
#endif
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
struct usb_msosv1_descriptor msosv1_desc = {
|
|
struct usb_msosv1_descriptor msosv1_desc = {
|
|
|
.string = WCID_StringDescriptor_MSOS,
|
|
.string = WCID_StringDescriptor_MSOS,
|
|
|
- .vendor_code = WCID_VENDOR_CODE,
|
|
|
|
|
|
|
+ .vendor_code = WINUSB_VENDOR_CODE,
|
|
|
.compat_id = WINUSB_WCIDDescriptor,
|
|
.compat_id = WINUSB_WCIDDescriptor,
|
|
|
.comp_id_property = WINUSB_IFx_WCIDProperties,
|
|
.comp_id_property = WINUSB_IFx_WCIDProperties,
|
|
|
};
|
|
};
|
|
@@ -166,20 +111,20 @@ struct usb_msosv1_descriptor msosv1_desc = {
|
|
|
#define WINUSB_IN_EP 0x81
|
|
#define WINUSB_IN_EP 0x81
|
|
|
#define WINUSB_OUT_EP 0x02
|
|
#define WINUSB_OUT_EP 0x02
|
|
|
|
|
|
|
|
-#define USBD_VID 0xefff
|
|
|
|
|
|
|
+#define USBD_VID 0xFFFE
|
|
|
#define USBD_PID 0xffff
|
|
#define USBD_PID 0xffff
|
|
|
#define USBD_MAX_POWER 100
|
|
#define USBD_MAX_POWER 100
|
|
|
#define USBD_LANGID_STRING 1033
|
|
#define USBD_LANGID_STRING 1033
|
|
|
|
|
|
|
|
-#if DOUBLE_WINUSB == 0
|
|
|
|
|
|
|
+#if WINUSB_NUM == 1
|
|
|
#define USB_CONFIG_SIZE (9 + 9 + 7 + 7)
|
|
#define USB_CONFIG_SIZE (9 + 9 + 7 + 7)
|
|
|
-#define INTF_NUM 1
|
|
|
|
|
|
|
+#define INTF_NUM 1
|
|
|
#else
|
|
#else
|
|
|
#define WINUSB_IN_EP2 0x83
|
|
#define WINUSB_IN_EP2 0x83
|
|
|
#define WINUSB_OUT_EP2 0x04
|
|
#define WINUSB_OUT_EP2 0x04
|
|
|
|
|
|
|
|
#define USB_CONFIG_SIZE (9 + 9 + 7 + 7 + 9 + 7 + 7)
|
|
#define USB_CONFIG_SIZE (9 + 9 + 7 + 7 + 9 + 7 + 7)
|
|
|
-#define INTF_NUM 2
|
|
|
|
|
|
|
+#define INTF_NUM 2
|
|
|
#endif
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_USB_HS
|
|
#ifdef CONFIG_USB_HS
|
|
@@ -198,7 +143,7 @@ static const uint8_t config_descriptor[] = {
|
|
|
USB_INTERFACE_DESCRIPTOR_INIT(0x00, 0x00, 0x02, 0xff, 0xff, 0x00, 0x04),
|
|
USB_INTERFACE_DESCRIPTOR_INIT(0x00, 0x00, 0x02, 0xff, 0xff, 0x00, 0x04),
|
|
|
USB_ENDPOINT_DESCRIPTOR_INIT(WINUSB_IN_EP, 0x02, WINUSB_EP_MPS, 0x00),
|
|
USB_ENDPOINT_DESCRIPTOR_INIT(WINUSB_IN_EP, 0x02, WINUSB_EP_MPS, 0x00),
|
|
|
USB_ENDPOINT_DESCRIPTOR_INIT(WINUSB_OUT_EP, 0x02, WINUSB_EP_MPS, 0x00),
|
|
USB_ENDPOINT_DESCRIPTOR_INIT(WINUSB_OUT_EP, 0x02, WINUSB_EP_MPS, 0x00),
|
|
|
-#if DOUBLE_WINUSB == 1
|
|
|
|
|
|
|
+#if WINUSB_NUM == 2
|
|
|
USB_INTERFACE_DESCRIPTOR_INIT(0x01, 0x00, 0x02, 0xff, 0xff, 0x00, 0x05),
|
|
USB_INTERFACE_DESCRIPTOR_INIT(0x01, 0x00, 0x02, 0xff, 0xff, 0x00, 0x05),
|
|
|
USB_ENDPOINT_DESCRIPTOR_INIT(WINUSB_IN_EP2, 0x02, WINUSB_EP_MPS, 0x00),
|
|
USB_ENDPOINT_DESCRIPTOR_INIT(WINUSB_IN_EP2, 0x02, WINUSB_EP_MPS, 0x00),
|
|
|
USB_ENDPOINT_DESCRIPTOR_INIT(WINUSB_OUT_EP2, 0x02, WINUSB_EP_MPS, 0x00),
|
|
USB_ENDPOINT_DESCRIPTOR_INIT(WINUSB_OUT_EP2, 0x02, WINUSB_EP_MPS, 0x00),
|
|
@@ -253,7 +198,7 @@ static const char *string_descriptor_callback(uint8_t speed, uint8_t index)
|
|
|
return string_descriptors[index];
|
|
return string_descriptors[index];
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-const struct usb_descriptor winusb_descriptor = {
|
|
|
|
|
|
|
+const struct usb_descriptor winusbv1_descriptor = {
|
|
|
.device_descriptor_callback = device_descriptor_callback,
|
|
.device_descriptor_callback = device_descriptor_callback,
|
|
|
.config_descriptor_callback = config_descriptor_callback,
|
|
.config_descriptor_callback = config_descriptor_callback,
|
|
|
.device_quality_descriptor_callback = device_quality_descriptor_callback,
|
|
.device_quality_descriptor_callback = device_quality_descriptor_callback,
|
|
@@ -261,13 +206,13 @@ const struct usb_descriptor winusb_descriptor = {
|
|
|
.msosv1_descriptor = &msosv1_desc
|
|
.msosv1_descriptor = &msosv1_desc
|
|
|
};
|
|
};
|
|
|
#else
|
|
#else
|
|
|
-const uint8_t winusb_descriptor[] = {
|
|
|
|
|
|
|
+const uint8_t winusbv1_descriptor[] = {
|
|
|
USB_DEVICE_DESCRIPTOR_INIT(USB_2_0, 0x00, 0x00, 0x00, USBD_VID, USBD_PID, 0x0001, 0x01),
|
|
USB_DEVICE_DESCRIPTOR_INIT(USB_2_0, 0x00, 0x00, 0x00, USBD_VID, USBD_PID, 0x0001, 0x01),
|
|
|
USB_CONFIG_DESCRIPTOR_INIT(USB_CONFIG_SIZE, INTF_NUM, 0x01, USB_CONFIG_BUS_POWERED, USBD_MAX_POWER),
|
|
USB_CONFIG_DESCRIPTOR_INIT(USB_CONFIG_SIZE, INTF_NUM, 0x01, USB_CONFIG_BUS_POWERED, USBD_MAX_POWER),
|
|
|
USB_INTERFACE_DESCRIPTOR_INIT(0x00, 0x00, 0x02, 0xff, 0xff, 0x00, 0x04),
|
|
USB_INTERFACE_DESCRIPTOR_INIT(0x00, 0x00, 0x02, 0xff, 0xff, 0x00, 0x04),
|
|
|
USB_ENDPOINT_DESCRIPTOR_INIT(WINUSB_IN_EP, 0x02, WINUSB_EP_MPS, 0x00),
|
|
USB_ENDPOINT_DESCRIPTOR_INIT(WINUSB_IN_EP, 0x02, WINUSB_EP_MPS, 0x00),
|
|
|
USB_ENDPOINT_DESCRIPTOR_INIT(WINUSB_OUT_EP, 0x02, WINUSB_EP_MPS, 0x00),
|
|
USB_ENDPOINT_DESCRIPTOR_INIT(WINUSB_OUT_EP, 0x02, WINUSB_EP_MPS, 0x00),
|
|
|
-#if DOUBLE_WINUSB == 1
|
|
|
|
|
|
|
+#if WINUSB_NUM == 2
|
|
|
USB_INTERFACE_DESCRIPTOR_INIT(0x01, 0x00, 0x02, 0xff, 0xff, 0x00, 0x05),
|
|
USB_INTERFACE_DESCRIPTOR_INIT(0x01, 0x00, 0x02, 0xff, 0xff, 0x00, 0x05),
|
|
|
USB_ENDPOINT_DESCRIPTOR_INIT(WINUSB_IN_EP2, 0x02, WINUSB_EP_MPS, 0x00),
|
|
USB_ENDPOINT_DESCRIPTOR_INIT(WINUSB_IN_EP2, 0x02, WINUSB_EP_MPS, 0x00),
|
|
|
USB_ENDPOINT_DESCRIPTOR_INIT(WINUSB_OUT_EP2, 0x02, WINUSB_EP_MPS, 0x00),
|
|
USB_ENDPOINT_DESCRIPTOR_INIT(WINUSB_OUT_EP2, 0x02, WINUSB_EP_MPS, 0x00),
|
|
@@ -428,7 +373,7 @@ static void usbd_event_handler(uint8_t busid, uint8_t event)
|
|
|
ep_tx_busy_flag = false;
|
|
ep_tx_busy_flag = false;
|
|
|
/* setup first out ep read transfer */
|
|
/* setup first out ep read transfer */
|
|
|
usbd_ep_start_read(busid, WINUSB_OUT_EP, read_buffer, 2048);
|
|
usbd_ep_start_read(busid, WINUSB_OUT_EP, read_buffer, 2048);
|
|
|
-#if DOUBLE_WINUSB == 1
|
|
|
|
|
|
|
+#if WINUSB_NUM == 2
|
|
|
usbd_ep_start_read(busid, WINUSB_OUT_EP2, read_buffer, 2048);
|
|
usbd_ep_start_read(busid, WINUSB_OUT_EP2, read_buffer, 2048);
|
|
|
#endif
|
|
#endif
|
|
|
break;
|
|
break;
|
|
@@ -478,7 +423,7 @@ struct usbd_endpoint winusb_in_ep1 = {
|
|
|
|
|
|
|
|
struct usbd_interface intf0;
|
|
struct usbd_interface intf0;
|
|
|
|
|
|
|
|
-#if DOUBLE_WINUSB == 1
|
|
|
|
|
|
|
+#if WINUSB_NUM == 2
|
|
|
|
|
|
|
|
void usbd_winusb_out2(uint8_t busid, uint8_t ep, uint32_t nbytes)
|
|
void usbd_winusb_out2(uint8_t busid, uint8_t ep, uint32_t nbytes)
|
|
|
{
|
|
{
|
|
@@ -518,12 +463,12 @@ struct usbd_interface intf1;
|
|
|
|
|
|
|
|
#endif
|
|
#endif
|
|
|
|
|
|
|
|
-void winusb_init(uint8_t busid, uintptr_t reg_base)
|
|
|
|
|
|
|
+void winusbv1_init(uint8_t busid, uintptr_t reg_base)
|
|
|
{
|
|
{
|
|
|
#ifdef CONFIG_USBDEV_ADVANCE_DESC
|
|
#ifdef CONFIG_USBDEV_ADVANCE_DESC
|
|
|
- usbd_desc_register(busid, &winusb_descriptor);
|
|
|
|
|
|
|
+ usbd_desc_register(busid, &winusbv1_descriptor);
|
|
|
#else
|
|
#else
|
|
|
- usbd_desc_register(busid, winusb_descriptor);
|
|
|
|
|
|
|
+ usbd_desc_register(busid, winusbv1_descriptor);
|
|
|
#endif
|
|
#endif
|
|
|
#ifndef CONFIG_USBDEV_ADVANCE_DESC
|
|
#ifndef CONFIG_USBDEV_ADVANCE_DESC
|
|
|
usbd_msosv1_desc_register(busid, &msosv1_desc);
|
|
usbd_msosv1_desc_register(busid, &msosv1_desc);
|
|
@@ -531,7 +476,7 @@ void winusb_init(uint8_t busid, uintptr_t reg_base)
|
|
|
usbd_add_interface(busid, &intf0);
|
|
usbd_add_interface(busid, &intf0);
|
|
|
usbd_add_endpoint(busid, &winusb_out_ep1);
|
|
usbd_add_endpoint(busid, &winusb_out_ep1);
|
|
|
usbd_add_endpoint(busid, &winusb_in_ep1);
|
|
usbd_add_endpoint(busid, &winusb_in_ep1);
|
|
|
-#if DOUBLE_WINUSB == 1
|
|
|
|
|
|
|
+#if WINUSB_NUM == 2
|
|
|
usbd_add_interface(busid, &intf1);
|
|
usbd_add_interface(busid, &intf1);
|
|
|
usbd_add_endpoint(busid, &winusb_out_ep2);
|
|
usbd_add_endpoint(busid, &winusb_out_ep2);
|
|
|
usbd_add_endpoint(busid, &winusb_in_ep2);
|
|
usbd_add_endpoint(busid, &winusb_in_ep2);
|