usbtty.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * (C) Copyright 2003
  3. * Gerry Hamel, geh@ti.com, Texas Instruments
  4. *
  5. * (C) Copyright 2006
  6. * Bryan O'Donoghue, bodonoghue@codehermit.ie, CodeHermit
  7. *
  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. #ifndef __USB_TTY_H__
  24. #define __USB_TTY_H__
  25. #include "usbdcore.h"
  26. #if defined(CONFIG_PPC)
  27. #include "usbdcore_mpc8xx.h"
  28. #elif defined(CONFIG_ARM)
  29. #include "usbdcore_omap1510.h"
  30. #endif
  31. #include <version_autogenerated.h>
  32. /* If no VendorID/ProductID is defined in config.h, pretend to be Linux
  33. * DO NOT Reuse this Vendor/Product setup with protocol incompatible devices */
  34. #define CONFIG_USBD_VENDORID 0x0525 /* Linux/NetChip */
  35. #define CONFIG_USBD_PRODUCTID_GSERIAL 0xa4a6 /* gserial */
  36. #define CONFIG_USBD_PRODUCTID_CDCACM 0xa4a7 /* CDC ACM */
  37. #define CONFIG_USBD_MANUFACTURER "Das U-Boot"
  38. #define CONFIG_USBD_PRODUCT_NAME U_BOOT_VERSION
  39. #define CONFIG_USBD_CONFIGURATION_STR "TTY via USB"
  40. #define CONFIG_USBD_SERIAL_OUT_ENDPOINT UDC_OUT_ENDPOINT
  41. #define CONFIG_USBD_SERIAL_OUT_PKTSIZE UDC_OUT_PACKET_SIZE
  42. #define CONFIG_USBD_SERIAL_IN_ENDPOINT UDC_IN_ENDPOINT
  43. #define CONFIG_USBD_SERIAL_IN_PKTSIZE UDC_IN_PACKET_SIZE
  44. #define CONFIG_USBD_SERIAL_INT_ENDPOINT UDC_INT_ENDPOINT
  45. #define CONFIG_USBD_SERIAL_INT_PKTSIZE UDC_INT_PACKET_SIZE
  46. #define CONFIG_USBD_SERIAL_BULK_PKTSIZE UDC_BULK_PACKET_SIZE
  47. #define USBTTY_DEVICE_CLASS COMMUNICATIONS_DEVICE_CLASS
  48. #define USBTTY_BCD_DEVICE 0x00
  49. #define USBTTY_MAXPOWER 0x00
  50. #define STR_LANG 0x00
  51. #define STR_MANUFACTURER 0x01
  52. #define STR_PRODUCT 0x02
  53. #define STR_SERIAL 0x03
  54. #define STR_CONFIG 0x04
  55. #define STR_DATA_INTERFACE 0x05
  56. #define STR_CTRL_INTERFACE 0x06
  57. #define STR_COUNT 0x07
  58. #endif