xref: /openbmc/u-boot/drivers/serial/usbtty.h (revision f9727161)
1 /*
2  * (C) Copyright 2003
3  * Gerry Hamel, geh@ti.com, Texas Instruments
4  *
5  * (C) Copyright 2006
6  * Bryan O'Donoghue, bodonoghue@codehermit.ie, CodeHermit
7  *
8  * SPDX-License-Identifier:	GPL-2.0+
9  */
10 
11 #ifndef __USB_TTY_H__
12 #define __USB_TTY_H__
13 
14 #include <usbdevice.h>
15 #if defined(CONFIG_PPC)
16 #include <usb/mpc8xx_udc.h>
17 #elif defined(CONFIG_OMAP1510)
18 #include <usb/omap1510_udc.h>
19 #elif defined(CONFIG_MUSB_UDC)
20 #include <usb/musb_udc.h>
21 #elif defined(CONFIG_CPU_PXA27X)
22 #include <usb/pxa27x_udc.h>
23 #elif defined(CONFIG_DW_UDC)
24 #include <usb/designware_udc.h>
25 #elif defined(CONFIG_MV_UDC)
26 #include <usb/mv_udc.h>
27 #endif
28 
29 #include <version.h>
30 
31 /* If no VendorID/ProductID is defined in config.h, pretend to be Linux
32  * DO NOT Reuse this Vendor/Product setup with protocol incompatible devices */
33 
34 #ifndef CONFIG_USBD_VENDORID
35 #define CONFIG_USBD_VENDORID		0x0525	/* Linux/NetChip */
36 #endif
37 #ifndef CONFIG_USBD_PRODUCTID_GSERIAL
38 #define CONFIG_USBD_PRODUCTID_GSERIAL	0xa4a6	/* gserial */
39 #endif
40 #ifndef CONFIG_USBD_PRODUCTID_CDCACM
41 #define CONFIG_USBD_PRODUCTID_CDCACM	0xa4a7	/* CDC ACM */
42 #endif
43 #ifndef CONFIG_USBD_MANUFACTURER
44 #define CONFIG_USBD_MANUFACTURER	"Das U-Boot"
45 #endif
46 #ifndef CONFIG_USBD_PRODUCT_NAME
47 #define CONFIG_USBD_PRODUCT_NAME	U_BOOT_VERSION
48 #endif
49 
50 #ifndef CONFIG_USBD_CONFIGURATION_STR
51 #define CONFIG_USBD_CONFIGURATION_STR	"TTY via USB"
52 #endif
53 
54 #define CONFIG_USBD_SERIAL_OUT_ENDPOINT UDC_OUT_ENDPOINT
55 #define CONFIG_USBD_SERIAL_OUT_PKTSIZE	UDC_OUT_PACKET_SIZE
56 #define CONFIG_USBD_SERIAL_IN_ENDPOINT	UDC_IN_ENDPOINT
57 #define CONFIG_USBD_SERIAL_IN_PKTSIZE	UDC_IN_PACKET_SIZE
58 #define CONFIG_USBD_SERIAL_INT_ENDPOINT UDC_INT_ENDPOINT
59 #define CONFIG_USBD_SERIAL_INT_PKTSIZE	UDC_INT_PACKET_SIZE
60 #define CONFIG_USBD_SERIAL_BULK_PKTSIZE	UDC_BULK_PACKET_SIZE
61 
62 #if defined(CONFIG_USBD_HS)
63 #define CONFIG_USBD_SERIAL_BULK_HS_PKTSIZE	UDC_BULK_HS_PACKET_SIZE
64 #endif
65 
66 #define USBTTY_DEVICE_CLASS	COMMUNICATIONS_DEVICE_CLASS
67 
68 #define USBTTY_BCD_DEVICE	0x00
69 #define USBTTY_MAXPOWER		0x00
70 
71 #define STR_LANG		0x00
72 #define STR_MANUFACTURER	0x01
73 #define STR_PRODUCT		0x02
74 #define STR_SERIAL		0x03
75 #define STR_CONFIG		0x04
76 #define STR_DATA_INTERFACE	0x05
77 #define STR_CTRL_INTERFACE	0x06
78 #define STR_COUNT		0x07
79 
80 #endif
81