Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2003 |
| 4 | * Gerry Hamel, geh@ti.com, Texas Instruments |
| 5 | * |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 6 | * (C) Copyright 2006 |
| 7 | * Bryan O'Donoghue, bodonoghue@codehermit.ie, CodeHermit |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #ifndef __USB_TTY_H__ |
| 11 | #define __USB_TTY_H__ |
| 12 | |
Jean-Christophe PLAGNIOL-VILLARD | 2731b9a | 2009-04-03 12:46:58 +0200 | [diff] [blame] | 13 | #include <usbdevice.h> |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 14 | #if defined(CONFIG_PPC) |
Jean-Christophe PLAGNIOL-VILLARD | 2731b9a | 2009-04-03 12:46:58 +0200 | [diff] [blame] | 15 | #include <usb/mpc8xx_udc.h> |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 16 | #elif defined(CONFIG_CI_UDC) |
| 17 | #include <usb/ci_udc.h> |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 18 | #endif |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 19 | |
Troy Kisky | 449697f | 2013-10-10 15:28:04 -0700 | [diff] [blame] | 20 | #include <usb/udc.h> |
Simon Glass | efb2172 | 2011-10-10 08:55:19 +0000 | [diff] [blame] | 21 | #include <version.h> |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 22 | |
Tom Rini | 6e7df1d | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 23 | #ifndef CFG_USBD_CONFIGURATION_STR |
| 24 | #define CFG_USBD_CONFIGURATION_STR "TTY via USB" |
Jean-Christophe PLAGNIOL-VILLARD | dedacc1 | 2008-12-07 09:45:35 +0100 | [diff] [blame] | 25 | #endif |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 26 | |
Tom Rini | 6e7df1d | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 27 | #define CFG_USBD_SERIAL_OUT_ENDPOINT UDC_OUT_ENDPOINT |
| 28 | #define CFG_USBD_SERIAL_OUT_PKTSIZE UDC_OUT_PACKET_SIZE |
| 29 | #define CFG_USBD_SERIAL_IN_ENDPOINT UDC_IN_ENDPOINT |
| 30 | #define CFG_USBD_SERIAL_IN_PKTSIZE UDC_IN_PACKET_SIZE |
| 31 | #define CFG_USBD_SERIAL_INT_ENDPOINT UDC_INT_ENDPOINT |
| 32 | #define CFG_USBD_SERIAL_INT_PKTSIZE UDC_INT_PACKET_SIZE |
| 33 | #define CFG_USBD_SERIAL_BULK_PKTSIZE UDC_BULK_PACKET_SIZE |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 34 | |
| 35 | #define USBTTY_DEVICE_CLASS COMMUNICATIONS_DEVICE_CLASS |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 36 | |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 37 | #define USBTTY_BCD_DEVICE 0x00 |
| 38 | #define USBTTY_MAXPOWER 0x00 |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 39 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 40 | #define STR_LANG 0x00 |
| 41 | #define STR_MANUFACTURER 0x01 |
| 42 | #define STR_PRODUCT 0x02 |
| 43 | #define STR_SERIAL 0x03 |
| 44 | #define STR_CONFIG 0x04 |
| 45 | #define STR_DATA_INTERFACE 0x05 |
| 46 | #define STR_CTRL_INTERFACE 0x06 |
| 47 | #define STR_COUNT 0x07 |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 48 | |
| 49 | #endif |