usbtty.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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 <usbdevice.h>
  26. #if defined(CONFIG_PPC)
  27. #include <usb/mpc8xx_udc.h>
  28. #elif defined(CONFIG_OMAP1510)
  29. #include <usb/omap1510_udc.h>
  30. #elif defined(CONFIG_MUSB_UDC)
  31. #include <usb/musb_udc.h>
  32. #elif defined(CONFIG_PXA27X)
  33. #include <usb/pxa27x_udc.h>
  34. #elif defined(CONFIG_SPEAR3XX) || defined(CONFIG_SPEAR600)
  35. #include <usb/spr_udc.h>
  36. #endif
  37. #include <version_autogenerated.h>
  38. /* If no VendorID/ProductID is defined in config.h, pretend to be Linux
  39. * DO NOT Reuse this Vendor/Product setup with protocol incompatible devices */
  40. #ifndef CONFIG_USBD_VENDORID
  41. #define CONFIG_USBD_VENDORID 0x0525 /* Linux/NetChip */
  42. #endif
  43. #ifndef CONFIG_USBD_PRODUCTID_GSERIAL
  44. #define CONFIG_USBD_PRODUCTID_GSERIAL 0xa4a6 /* gserial */
  45. #endif
  46. #ifndef CONFIG_USBD_PRODUCTID_CDCACM
  47. #define CONFIG_USBD_PRODUCTID_CDCACM 0xa4a7 /* CDC ACM */
  48. #endif
  49. #ifndef CONFIG_USBD_MANUFACTURER
  50. #define CONFIG_USBD_MANUFACTURER "Das U-Boot"
  51. #endif
  52. #ifndef CONFIG_USBD_PRODUCT_NAME
  53. #define CONFIG_USBD_PRODUCT_NAME U_BOOT_VERSION
  54. #endif
  55. #ifndef CONFIG_USBD_CONFIGURATION_STR
  56. #define CONFIG_USBD_CONFIGURATION_STR "TTY via USB"
  57. #endif
  58. #define CONFIG_USBD_SERIAL_OUT_ENDPOINT UDC_OUT_ENDPOINT
  59. #define CONFIG_USBD_SERIAL_OUT_PKTSIZE UDC_OUT_PACKET_SIZE
  60. #define CONFIG_USBD_SERIAL_IN_ENDPOINT UDC_IN_ENDPOINT
  61. #define CONFIG_USBD_SERIAL_IN_PKTSIZE UDC_IN_PACKET_SIZE
  62. #define CONFIG_USBD_SERIAL_INT_ENDPOINT UDC_INT_ENDPOINT
  63. #define CONFIG_USBD_SERIAL_INT_PKTSIZE UDC_INT_PACKET_SIZE
  64. #define CONFIG_USBD_SERIAL_BULK_PKTSIZE UDC_BULK_PACKET_SIZE
  65. #define USBTTY_DEVICE_CLASS COMMUNICATIONS_DEVICE_CLASS
  66. #define USBTTY_BCD_DEVICE 0x00
  67. #define USBTTY_MAXPOWER 0x00
  68. #define STR_LANG 0x00
  69. #define STR_MANUFACTURER 0x01
  70. #define STR_PRODUCT 0x02
  71. #define STR_SERIAL 0x03
  72. #define STR_CONFIG 0x04
  73. #define STR_DATA_INTERFACE 0x05
  74. #define STR_CTRL_INTERFACE 0x06
  75. #define STR_COUNT 0x07
  76. #endif