wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2003 |
| 3 | * Gerry Hamel, geh@ti.com, Texas Instruments |
| 4 | * |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 5 | * (C) Copyright 2006 |
| 6 | * Bryan O'Donoghue, bodonoghue@codehermit.ie, CodeHermit |
| 7 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 8 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #ifndef __USB_TTY_H__ |
| 12 | #define __USB_TTY_H__ |
| 13 | |
Jean-Christophe PLAGNIOL-VILLARD | 2731b9a | 2009-04-03 12:46:58 +0200 | [diff] [blame] | 14 | #include <usbdevice.h> |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 15 | #if defined(CONFIG_PPC) |
Jean-Christophe PLAGNIOL-VILLARD | 2731b9a | 2009-04-03 12:46:58 +0200 | [diff] [blame] | 16 | #include <usb/mpc8xx_udc.h> |
Remy Bohmer | 3ccbfb2 | 2009-04-05 11:43:28 +0200 | [diff] [blame] | 17 | #elif defined(CONFIG_OMAP1510) |
Jean-Christophe PLAGNIOL-VILLARD | 2731b9a | 2009-04-03 12:46:58 +0200 | [diff] [blame] | 18 | #include <usb/omap1510_udc.h> |
Marek Vasut | abc20ab | 2011-11-26 07:20:07 +0100 | [diff] [blame] | 19 | #elif defined(CONFIG_CPU_PXA27X) |
Remy Bohmer | 3ccbfb2 | 2009-04-05 11:43:28 +0200 | [diff] [blame] | 20 | #include <usb/pxa27x_udc.h> |
Vipin KUMAR | 2721551 | 2012-03-06 23:39:37 +0000 | [diff] [blame] | 21 | #elif defined(CONFIG_DW_UDC) |
| 22 | #include <usb/designware_udc.h> |
Marek Vasut | a7eafcf | 2013-07-10 03:16:27 +0200 | [diff] [blame] | 23 | #elif defined(CONFIG_MV_UDC) |
| 24 | #include <usb/mv_udc.h> |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 25 | #endif |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 26 | |
Troy Kisky | 449697f | 2013-10-10 15:28:04 -0700 | [diff] [blame] | 27 | #include <usb/udc.h> |
Simon Glass | efb2172 | 2011-10-10 08:55:19 +0000 | [diff] [blame] | 28 | #include <version.h> |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 29 | |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 30 | /* If no VendorID/ProductID is defined in config.h, pretend to be Linux |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 31 | * DO NOT Reuse this Vendor/Product setup with protocol incompatible devices */ |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 32 | |
Jean-Christophe PLAGNIOL-VILLARD | dedacc1 | 2008-12-07 09:45:35 +0100 | [diff] [blame] | 33 | #ifndef CONFIG_USBD_VENDORID |
| 34 | #define CONFIG_USBD_VENDORID 0x0525 /* Linux/NetChip */ |
| 35 | #endif |
| 36 | #ifndef CONFIG_USBD_PRODUCTID_GSERIAL |
| 37 | #define CONFIG_USBD_PRODUCTID_GSERIAL 0xa4a6 /* gserial */ |
| 38 | #endif |
| 39 | #ifndef CONFIG_USBD_PRODUCTID_CDCACM |
| 40 | #define CONFIG_USBD_PRODUCTID_CDCACM 0xa4a7 /* CDC ACM */ |
| 41 | #endif |
| 42 | #ifndef CONFIG_USBD_MANUFACTURER |
| 43 | #define CONFIG_USBD_MANUFACTURER "Das U-Boot" |
| 44 | #endif |
| 45 | #ifndef CONFIG_USBD_PRODUCT_NAME |
| 46 | #define CONFIG_USBD_PRODUCT_NAME U_BOOT_VERSION |
| 47 | #endif |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 48 | |
Jean-Christophe PLAGNIOL-VILLARD | dedacc1 | 2008-12-07 09:45:35 +0100 | [diff] [blame] | 49 | #ifndef CONFIG_USBD_CONFIGURATION_STR |
| 50 | #define CONFIG_USBD_CONFIGURATION_STR "TTY via USB" |
| 51 | #endif |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 52 | |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 53 | #define CONFIG_USBD_SERIAL_OUT_ENDPOINT UDC_OUT_ENDPOINT |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 54 | #define CONFIG_USBD_SERIAL_OUT_PKTSIZE UDC_OUT_PACKET_SIZE |
| 55 | #define CONFIG_USBD_SERIAL_IN_ENDPOINT UDC_IN_ENDPOINT |
| 56 | #define CONFIG_USBD_SERIAL_IN_PKTSIZE UDC_IN_PACKET_SIZE |
| 57 | #define CONFIG_USBD_SERIAL_INT_ENDPOINT UDC_INT_ENDPOINT |
| 58 | #define CONFIG_USBD_SERIAL_INT_PKTSIZE UDC_INT_PACKET_SIZE |
| 59 | #define CONFIG_USBD_SERIAL_BULK_PKTSIZE UDC_BULK_PACKET_SIZE |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 60 | |
Vipin KUMAR | f9da0f8 | 2012-03-26 15:38:06 +0530 | [diff] [blame] | 61 | #if defined(CONFIG_USBD_HS) |
| 62 | #define CONFIG_USBD_SERIAL_BULK_HS_PKTSIZE UDC_BULK_HS_PACKET_SIZE |
| 63 | #endif |
| 64 | |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 65 | #define USBTTY_DEVICE_CLASS COMMUNICATIONS_DEVICE_CLASS |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 66 | |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 67 | #define USBTTY_BCD_DEVICE 0x00 |
| 68 | #define USBTTY_MAXPOWER 0x00 |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 69 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 70 | #define STR_LANG 0x00 |
| 71 | #define STR_MANUFACTURER 0x01 |
| 72 | #define STR_PRODUCT 0x02 |
| 73 | #define STR_SERIAL 0x03 |
| 74 | #define STR_CONFIG 0x04 |
| 75 | #define STR_DATA_INTERFACE 0x05 |
| 76 | #define STR_CTRL_INTERFACE 0x06 |
| 77 | #define STR_COUNT 0x07 |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 78 | |
| 79 | #endif |