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 | * |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 21 | * |
| 22 | */ |
| 23 | |
| 24 | #ifndef __USB_TTY_H__ |
| 25 | #define __USB_TTY_H__ |
| 26 | |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 27 | #include "usbdcore.h" |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 28 | #if defined(CONFIG_PPC) |
| 29 | #include "usbdcore_mpc8xx.h" |
| 30 | #elif defined(CONFIG_ARM) |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 31 | #include "usbdcore_omap1510.h" |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 32 | #endif |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 33 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 34 | #include <version_autogenerated.h> |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 35 | |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 36 | /* 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] | 37 | * DO NOT Reuse this Vendor/Product setup with protocol incompatible devices */ |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 38 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 39 | #define CONFIG_USBD_VENDORID 0x0525 /* Linux/NetChip */ |
| 40 | #define CONFIG_USBD_PRODUCTID_GSERIAL 0xa4a6 /* gserial */ |
| 41 | #define CONFIG_USBD_PRODUCTID_CDCACM 0xa4a7 /* CDC ACM */ |
| 42 | #define CONFIG_USBD_MANUFACTURER "Das U-Boot" |
| 43 | #define CONFIG_USBD_PRODUCT_NAME U_BOOT_VERSION |
| 44 | |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 45 | |
| 46 | #define CONFIG_USBD_CONFIGURATION_STR "TTY via USB" |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 47 | |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 48 | #define CONFIG_USBD_SERIAL_OUT_ENDPOINT UDC_OUT_ENDPOINT |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 49 | #define CONFIG_USBD_SERIAL_OUT_PKTSIZE UDC_OUT_PACKET_SIZE |
| 50 | #define CONFIG_USBD_SERIAL_IN_ENDPOINT UDC_IN_ENDPOINT |
| 51 | #define CONFIG_USBD_SERIAL_IN_PKTSIZE UDC_IN_PACKET_SIZE |
| 52 | #define CONFIG_USBD_SERIAL_INT_ENDPOINT UDC_INT_ENDPOINT |
| 53 | #define CONFIG_USBD_SERIAL_INT_PKTSIZE UDC_INT_PACKET_SIZE |
| 54 | #define CONFIG_USBD_SERIAL_BULK_PKTSIZE UDC_BULK_PACKET_SIZE |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 55 | |
| 56 | #define USBTTY_DEVICE_CLASS COMMUNICATIONS_DEVICE_CLASS |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 57 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 58 | #define USBTTY_BCD_DEVICE 0x00 |
| 59 | #define USBTTY_MAXPOWER 0x00 |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 60 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 61 | #define STR_LANG 0x00 |
| 62 | #define STR_MANUFACTURER 0x01 |
| 63 | #define STR_PRODUCT 0x02 |
| 64 | #define STR_SERIAL 0x03 |
| 65 | #define STR_CONFIG 0x04 |
| 66 | #define STR_DATA_INTERFACE 0x05 |
| 67 | #define STR_CTRL_INTERFACE 0x06 |
| 68 | #define STR_COUNT 0x07 |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 69 | |
| 70 | #endif |