GK SDK 源码库: XMIPCLinuxV100R005C00SPC030 (kernel/tools/open_source excluded)

This commit is contained in:
lai
2026-09-06 03:52:57 +08:00
commit b1928b41c0
21813 changed files with 4413081 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
/*
* Copyright (c) LOTUS. All rights reserved.
*/
#ifndef USB_VENDOR_H
#define USB_VENDOR_H
enum usb_init_types {
LOTUS_DWC_U3 = 0, /* usb3 controller is default */
LOTUS_DWC_U2 = 1, /* usb2 controller */
LOTUS_USB_CTRL_UNKNOWN = 2, /* unknown controller */
};
#ifdef CONFIG_USB_DUAL_PORT_SUPPORT
void phy_usb_init(int index, int type);
#else
void phy_usb_init(int index);
#endif
void udc_connect(void);
void udc_puts(const char *s);
#endif