blob: 6b6c4a162855a3645ffcf9bcafee17172446a63b [file] [log] [blame]
wdenk232c1502004-03-12 00:14:09 +00001/*
2 * (C) Copyright 2003
3 * Gerry Hamel, geh@ti.com, Texas Instruments
4 *
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +02005 * (C) Copyright 2006
6 * Bryan O'Donoghue, bodonoghue@codehermit.ie, CodeHermit
7 *
wdenk232c1502004-03-12 00:14:09 +00008 * 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
Jean-Christophe PLAGNIOL-VILLARD2731b9a2009-04-03 12:46:58 +020027#include <usbdevice.h>
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +020028#if defined(CONFIG_PPC)
Jean-Christophe PLAGNIOL-VILLARD2731b9a2009-04-03 12:46:58 +020029#include <usb/mpc8xx_udc.h>
Remy Bohmer3ccbfb22009-04-05 11:43:28 +020030#elif defined(CONFIG_OMAP1510)
Jean-Christophe PLAGNIOL-VILLARD2731b9a2009-04-03 12:46:58 +020031#include <usb/omap1510_udc.h>
Tom Rixf298e4b2009-10-31 12:37:41 -050032#elif defined(CONFIG_MUSB_UDC)
33#include <usb/musb_udc.h>
Remy Bohmer3ccbfb22009-04-05 11:43:28 +020034#elif defined(CONFIG_PXA27X)
35#include <usb/pxa27x_udc.h>
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +020036#endif
wdenk232c1502004-03-12 00:14:09 +000037
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +020038#include <version_autogenerated.h>
wdenk232c1502004-03-12 00:14:09 +000039
Wolfgang Denk386eda02006-06-14 18:14:56 +020040/* If no VendorID/ProductID is defined in config.h, pretend to be Linux
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +020041 * DO NOT Reuse this Vendor/Product setup with protocol incompatible devices */
wdenk232c1502004-03-12 00:14:09 +000042
Jean-Christophe PLAGNIOL-VILLARDdedacc12008-12-07 09:45:35 +010043#ifndef CONFIG_USBD_VENDORID
44#define CONFIG_USBD_VENDORID 0x0525 /* Linux/NetChip */
45#endif
46#ifndef CONFIG_USBD_PRODUCTID_GSERIAL
47#define CONFIG_USBD_PRODUCTID_GSERIAL 0xa4a6 /* gserial */
48#endif
49#ifndef CONFIG_USBD_PRODUCTID_CDCACM
50#define CONFIG_USBD_PRODUCTID_CDCACM 0xa4a7 /* CDC ACM */
51#endif
52#ifndef CONFIG_USBD_MANUFACTURER
53#define CONFIG_USBD_MANUFACTURER "Das U-Boot"
54#endif
55#ifndef CONFIG_USBD_PRODUCT_NAME
56#define CONFIG_USBD_PRODUCT_NAME U_BOOT_VERSION
57#endif
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +020058
Jean-Christophe PLAGNIOL-VILLARDdedacc12008-12-07 09:45:35 +010059#ifndef CONFIG_USBD_CONFIGURATION_STR
60#define CONFIG_USBD_CONFIGURATION_STR "TTY via USB"
61#endif
wdenk232c1502004-03-12 00:14:09 +000062
Wolfgang Denk386eda02006-06-14 18:14:56 +020063#define CONFIG_USBD_SERIAL_OUT_ENDPOINT UDC_OUT_ENDPOINT
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +020064#define CONFIG_USBD_SERIAL_OUT_PKTSIZE UDC_OUT_PACKET_SIZE
65#define CONFIG_USBD_SERIAL_IN_ENDPOINT UDC_IN_ENDPOINT
66#define CONFIG_USBD_SERIAL_IN_PKTSIZE UDC_IN_PACKET_SIZE
67#define CONFIG_USBD_SERIAL_INT_ENDPOINT UDC_INT_ENDPOINT
68#define CONFIG_USBD_SERIAL_INT_PKTSIZE UDC_INT_PACKET_SIZE
69#define CONFIG_USBD_SERIAL_BULK_PKTSIZE UDC_BULK_PACKET_SIZE
wdenk232c1502004-03-12 00:14:09 +000070
71#define USBTTY_DEVICE_CLASS COMMUNICATIONS_DEVICE_CLASS
wdenk232c1502004-03-12 00:14:09 +000072
Wolfgang Denk53677ef2008-05-20 16:00:29 +020073#define USBTTY_BCD_DEVICE 0x00
74#define USBTTY_MAXPOWER 0x00
wdenk232c1502004-03-12 00:14:09 +000075
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +020076#define STR_LANG 0x00
77#define STR_MANUFACTURER 0x01
78#define STR_PRODUCT 0x02
79#define STR_SERIAL 0x03
80#define STR_CONFIG 0x04
81#define STR_DATA_INTERFACE 0x05
82#define STR_CTRL_INTERFACE 0x06
83#define STR_COUNT 0x07
wdenk232c1502004-03-12 00:14:09 +000084
85#endif