• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef _INTERFACE_INIT_H
2 #define _INTERFACE_INIT_H
3 
4 #define BCM_USB_VENDOR_ID_T3	0x198f
5 #define BCM_USB_VENDOR_ID_FOXCONN	0x0489
6 #define BCM_USB_VENDOR_ID_ZTE	0x19d2
7 
8 #define BCM_USB_PRODUCT_ID_T3	0x0300
9 #define BCM_USB_PRODUCT_ID_T3B	0x0210
10 #define BCM_USB_PRODUCT_ID_T3L	0x0220
11 #define BCM_USB_PRODUCT_ID_SYM	0x15E
12 #define BCM_USB_PRODUCT_ID_1901	0xe017
13 #define BCM_USB_PRODUCT_ID_226	0x0132 /* not sure if this is valid */
14 #define BCM_USB_PRODUCT_ID_ZTE_226 0x172
15 #define BCM_USB_PRODUCT_ID_ZTE_326 0x173 /* ZTE AX326 */
16 #define BCM_USB_PRODUCT_ID_ZTE_TU25	0x0007
17 
18 #define BCM_USB_MINOR_BASE	192
19 
20 int InterfaceInitialize(void);
21 
22 int InterfaceExit(void);
23 
24 int usbbcm_worker_thread(struct bcm_interface_adapter *psIntfAdapter);
25 
26 #endif
27