]> git.ipfire.org Git - people/ms/u-boot.git/blame - drivers/serial/usbtty.h
mod change 755 => 644 for multiple files
[people/ms/u-boot.git] / drivers / serial / usbtty.h
CommitLineData
232c150a
WD
1/*
2 * (C) Copyright 2003
3 * Gerry Hamel, geh@ti.com, Texas Instruments
4 *
16c8d5e7
WD
5 * (C) Copyright 2006
6 * Bryan O'Donoghue, bodonoghue@codehermit.ie, CodeHermit
7 *
232c150a
WD
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
2731b9a8 27#include <usbdevice.h>
16c8d5e7 28#if defined(CONFIG_PPC)
2731b9a8 29#include <usb/mpc8xx_udc.h>
3ccbfb25 30#elif defined(CONFIG_OMAP1510)
2731b9a8 31#include <usb/omap1510_udc.h>
f298e4b6
TR
32#elif defined(CONFIG_MUSB_UDC)
33#include <usb/musb_udc.h>
3ccbfb25
RB
34#elif defined(CONFIG_PXA27X)
35#include <usb/pxa27x_udc.h>
62db1c0d
VK
36#elif defined(CONFIG_SPEAR3XX) || defined(CONFIG_SPEAR600)
37#include <usb/spr_udc.h>
16c8d5e7 38#endif
232c150a 39
16c8d5e7 40#include <version_autogenerated.h>
232c150a 41
386eda02 42/* If no VendorID/ProductID is defined in config.h, pretend to be Linux
16c8d5e7 43 * DO NOT Reuse this Vendor/Product setup with protocol incompatible devices */
232c150a 44
dedacc18
JCPV
45#ifndef CONFIG_USBD_VENDORID
46#define CONFIG_USBD_VENDORID 0x0525 /* Linux/NetChip */
47#endif
48#ifndef CONFIG_USBD_PRODUCTID_GSERIAL
49#define CONFIG_USBD_PRODUCTID_GSERIAL 0xa4a6 /* gserial */
50#endif
51#ifndef CONFIG_USBD_PRODUCTID_CDCACM
52#define CONFIG_USBD_PRODUCTID_CDCACM 0xa4a7 /* CDC ACM */
53#endif
54#ifndef CONFIG_USBD_MANUFACTURER
55#define CONFIG_USBD_MANUFACTURER "Das U-Boot"
56#endif
57#ifndef CONFIG_USBD_PRODUCT_NAME
58#define CONFIG_USBD_PRODUCT_NAME U_BOOT_VERSION
59#endif
232c150a 60
dedacc18
JCPV
61#ifndef CONFIG_USBD_CONFIGURATION_STR
62#define CONFIG_USBD_CONFIGURATION_STR "TTY via USB"
63#endif
232c150a 64
386eda02 65#define CONFIG_USBD_SERIAL_OUT_ENDPOINT UDC_OUT_ENDPOINT
16c8d5e7
WD
66#define CONFIG_USBD_SERIAL_OUT_PKTSIZE UDC_OUT_PACKET_SIZE
67#define CONFIG_USBD_SERIAL_IN_ENDPOINT UDC_IN_ENDPOINT
68#define CONFIG_USBD_SERIAL_IN_PKTSIZE UDC_IN_PACKET_SIZE
69#define CONFIG_USBD_SERIAL_INT_ENDPOINT UDC_INT_ENDPOINT
70#define CONFIG_USBD_SERIAL_INT_PKTSIZE UDC_INT_PACKET_SIZE
71#define CONFIG_USBD_SERIAL_BULK_PKTSIZE UDC_BULK_PACKET_SIZE
232c150a
WD
72
73#define USBTTY_DEVICE_CLASS COMMUNICATIONS_DEVICE_CLASS
232c150a 74
53677ef1
WD
75#define USBTTY_BCD_DEVICE 0x00
76#define USBTTY_MAXPOWER 0x00
232c150a 77
16c8d5e7
WD
78#define STR_LANG 0x00
79#define STR_MANUFACTURER 0x01
80#define STR_PRODUCT 0x02
81#define STR_SERIAL 0x03
82#define STR_CONFIG 0x04
83#define STR_DATA_INTERFACE 0x05
84#define STR_CTRL_INTERFACE 0x06
85#define STR_COUNT 0x07
232c150a
WD
86
87#endif