]>
Commit | Line | Data |
---|---|---|
232c150a WD |
1 | /* |
2 | * (C) Copyright 2003 | |
3 | * Gerry Hamel, [email protected], Texas Instruments | |
4 | * | |
16c8d5e7 WD |
5 | * (C) Copyright 2006 |
6 | * Bryan O'Donoghue, [email protected], CodeHermit | |
7 | * | |
1a459660 | 8 | * SPDX-License-Identifier: GPL-2.0+ |
232c150a WD |
9 | */ |
10 | ||
11 | #ifndef __USB_TTY_H__ | |
12 | #define __USB_TTY_H__ | |
13 | ||
2731b9a8 | 14 | #include <usbdevice.h> |
16c8d5e7 | 15 | #if defined(CONFIG_PPC) |
2731b9a8 | 16 | #include <usb/mpc8xx_udc.h> |
abc20aba | 17 | #elif defined(CONFIG_CPU_PXA27X) |
3ccbfb25 | 18 | #include <usb/pxa27x_udc.h> |
2721551a VK |
19 | #elif defined(CONFIG_DW_UDC) |
20 | #include <usb/designware_udc.h> | |
f016f8ca MV |
21 | #elif defined(CONFIG_CI_UDC) |
22 | #include <usb/ci_udc.h> | |
16c8d5e7 | 23 | #endif |
232c150a | 24 | |
449697f1 | 25 | #include <usb/udc.h> |
efb2172e | 26 | #include <version.h> |
232c150a | 27 | |
386eda02 | 28 | /* If no VendorID/ProductID is defined in config.h, pretend to be Linux |
16c8d5e7 | 29 | * DO NOT Reuse this Vendor/Product setup with protocol incompatible devices */ |
232c150a | 30 | |
dedacc18 JCPV |
31 | #ifndef CONFIG_USBD_VENDORID |
32 | #define CONFIG_USBD_VENDORID 0x0525 /* Linux/NetChip */ | |
33 | #endif | |
34 | #ifndef CONFIG_USBD_PRODUCTID_GSERIAL | |
35 | #define CONFIG_USBD_PRODUCTID_GSERIAL 0xa4a6 /* gserial */ | |
36 | #endif | |
37 | #ifndef CONFIG_USBD_PRODUCTID_CDCACM | |
38 | #define CONFIG_USBD_PRODUCTID_CDCACM 0xa4a7 /* CDC ACM */ | |
39 | #endif | |
40 | #ifndef CONFIG_USBD_MANUFACTURER | |
41 | #define CONFIG_USBD_MANUFACTURER "Das U-Boot" | |
42 | #endif | |
43 | #ifndef CONFIG_USBD_PRODUCT_NAME | |
44 | #define CONFIG_USBD_PRODUCT_NAME U_BOOT_VERSION | |
45 | #endif | |
232c150a | 46 | |
dedacc18 JCPV |
47 | #ifndef CONFIG_USBD_CONFIGURATION_STR |
48 | #define CONFIG_USBD_CONFIGURATION_STR "TTY via USB" | |
49 | #endif | |
232c150a | 50 | |
386eda02 | 51 | #define CONFIG_USBD_SERIAL_OUT_ENDPOINT UDC_OUT_ENDPOINT |
16c8d5e7 WD |
52 | #define CONFIG_USBD_SERIAL_OUT_PKTSIZE UDC_OUT_PACKET_SIZE |
53 | #define CONFIG_USBD_SERIAL_IN_ENDPOINT UDC_IN_ENDPOINT | |
54 | #define CONFIG_USBD_SERIAL_IN_PKTSIZE UDC_IN_PACKET_SIZE | |
55 | #define CONFIG_USBD_SERIAL_INT_ENDPOINT UDC_INT_ENDPOINT | |
56 | #define CONFIG_USBD_SERIAL_INT_PKTSIZE UDC_INT_PACKET_SIZE | |
57 | #define CONFIG_USBD_SERIAL_BULK_PKTSIZE UDC_BULK_PACKET_SIZE | |
232c150a | 58 | |
f9da0f89 VK |
59 | #if defined(CONFIG_USBD_HS) |
60 | #define CONFIG_USBD_SERIAL_BULK_HS_PKTSIZE UDC_BULK_HS_PACKET_SIZE | |
61 | #endif | |
62 | ||
232c150a | 63 | #define USBTTY_DEVICE_CLASS COMMUNICATIONS_DEVICE_CLASS |
232c150a | 64 | |
53677ef1 WD |
65 | #define USBTTY_BCD_DEVICE 0x00 |
66 | #define USBTTY_MAXPOWER 0x00 | |
232c150a | 67 | |
16c8d5e7 WD |
68 | #define STR_LANG 0x00 |
69 | #define STR_MANUFACTURER 0x01 | |
70 | #define STR_PRODUCT 0x02 | |
71 | #define STR_SERIAL 0x03 | |
72 | #define STR_CONFIG 0x04 | |
73 | #define STR_DATA_INTERFACE 0x05 | |
74 | #define STR_CTRL_INTERFACE 0x06 | |
75 | #define STR_COUNT 0x07 | |
232c150a WD |
76 | |
77 | #endif |