usbtty.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * (C) Copyright 2003
  4. * Gerry Hamel, geh@ti.com, Texas Instruments
  5. *
  6. * (C) Copyright 2006
  7. * Bryan O'Donoghue, bodonoghue@codehermit.ie, CodeHermit
  8. */
  9. #ifndef __USB_TTY_H__
  10. #define __USB_TTY_H__
  11. #include <usbdevice.h>
  12. #if defined(CONFIG_PPC)
  13. #include <usb/mpc8xx_udc.h>
  14. #elif defined(CONFIG_CPU_PXA27X)
  15. #include <usb/pxa27x_udc.h>
  16. #elif defined(CONFIG_DW_UDC)
  17. #include <usb/designware_udc.h>
  18. #elif defined(CONFIG_CI_UDC)
  19. #include <usb/ci_udc.h>
  20. #endif
  21. #include <usb/udc.h>
  22. #include <version.h>
  23. /* If no VendorID/ProductID is defined in config.h, pretend to be Linux
  24. * DO NOT Reuse this Vendor/Product setup with protocol incompatible devices */
  25. #ifndef CONFIG_USBD_VENDORID
  26. #define CONFIG_USBD_VENDORID 0x0525 /* Linux/NetChip */
  27. #endif
  28. #ifndef CONFIG_USBD_PRODUCTID_GSERIAL
  29. #define CONFIG_USBD_PRODUCTID_GSERIAL 0xa4a6 /* gserial */
  30. #endif
  31. #ifndef CONFIG_USBD_PRODUCTID_CDCACM
  32. #define CONFIG_USBD_PRODUCTID_CDCACM 0xa4a7 /* CDC ACM */
  33. #endif
  34. #ifndef CONFIG_USBD_MANUFACTURER
  35. #define CONFIG_USBD_MANUFACTURER "Das U-Boot"
  36. #endif
  37. #ifndef CONFIG_USBD_PRODUCT_NAME
  38. #define CONFIG_USBD_PRODUCT_NAME U_BOOT_VERSION
  39. #endif
  40. #ifndef CONFIG_USBD_CONFIGURATION_STR
  41. #define CONFIG_USBD_CONFIGURATION_STR "TTY via USB"
  42. #endif
  43. #define CONFIG_USBD_SERIAL_OUT_ENDPOINT UDC_OUT_ENDPOINT
  44. #define CONFIG_USBD_SERIAL_OUT_PKTSIZE UDC_OUT_PACKET_SIZE
  45. #define CONFIG_USBD_SERIAL_IN_ENDPOINT UDC_IN_ENDPOINT
  46. #define CONFIG_USBD_SERIAL_IN_PKTSIZE UDC_IN_PACKET_SIZE
  47. #define CONFIG_USBD_SERIAL_INT_ENDPOINT UDC_INT_ENDPOINT
  48. #define CONFIG_USBD_SERIAL_INT_PKTSIZE UDC_INT_PACKET_SIZE
  49. #define CONFIG_USBD_SERIAL_BULK_PKTSIZE UDC_BULK_PACKET_SIZE
  50. #if defined(CONFIG_USBD_HS)
  51. #define CONFIG_USBD_SERIAL_BULK_HS_PKTSIZE UDC_BULK_HS_PACKET_SIZE
  52. #endif
  53. #define USBTTY_DEVICE_CLASS COMMUNICATIONS_DEVICE_CLASS
  54. #define USBTTY_BCD_DEVICE 0x00
  55. #define USBTTY_MAXPOWER 0x00
  56. #define STR_LANG 0x00
  57. #define STR_MANUFACTURER 0x01
  58. #define STR_PRODUCT 0x02
  59. #define STR_SERIAL 0x03
  60. #define STR_CONFIG 0x04
  61. #define STR_DATA_INTERFACE 0x05
  62. #define STR_CTRL_INTERFACE 0x06
  63. #define STR_COUNT 0x07
  64. #endif