qcaux.c 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. * Qualcomm USB Auxiliary Serial Port driver
  3. *
  4. * Copyright (C) 2008 Greg Kroah-Hartman <greg@kroah.com>
  5. * Copyright (C) 2010 Dan Williams <dcbw@redhat.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. * Devices listed here usually provide a CDC ACM port on which normal modem
  12. * AT commands and PPP can be used. But when that port is in-use by PPP it
  13. * cannot be used simultaneously for status or signal strength. Instead, the
  14. * ports here can be queried for that information using the Qualcomm DM
  15. * protocol.
  16. */
  17. #include <linux/kernel.h>
  18. #include <linux/init.h>
  19. #include <linux/tty.h>
  20. #include <linux/module.h>
  21. #include <linux/usb.h>
  22. #include <linux/usb/serial.h>
  23. /* NOTE: for now, only use this driver for devices that provide a CDC-ACM port
  24. * for normal AT commands, but also provide secondary USB interfaces for the
  25. * QCDM-capable ports. Devices that do not provide a CDC-ACM port should
  26. * probably be driven by option.ko.
  27. */
  28. /* UTStarcom/Pantech/Curitel devices */
  29. #define UTSTARCOM_VENDOR_ID 0x106c
  30. #define UTSTARCOM_PRODUCT_PC5740 0x3701
  31. #define UTSTARCOM_PRODUCT_PC5750 0x3702 /* aka Pantech PX-500 */
  32. #define UTSTARCOM_PRODUCT_UM150 0x3711
  33. #define UTSTARCOM_PRODUCT_UM175_V1 0x3712
  34. #define UTSTARCOM_PRODUCT_UM175_V2 0x3714
  35. #define UTSTARCOM_PRODUCT_UM175_ALLTEL 0x3715
  36. /* CMOTECH devices */
  37. #define CMOTECH_VENDOR_ID 0x16d8
  38. #define CMOTECH_PRODUCT_CDU550 0x5553
  39. #define CMOTECH_PRODUCT_CDX650 0x6512
  40. /* LG devices */
  41. #define LG_VENDOR_ID 0x1004
  42. #define LG_PRODUCT_VX4400_6000 0x6000 /* VX4400/VX6000/Rumor */
  43. /* Sanyo devices */
  44. #define SANYO_VENDOR_ID 0x0474
  45. #define SANYO_PRODUCT_KATANA_LX 0x0754 /* SCP-3800 (Katana LX) */
  46. /* Samsung devices */
  47. #define SAMSUNG_VENDOR_ID 0x04e8
  48. #define SAMSUNG_PRODUCT_U520 0x6640 /* SCH-U520 */
  49. static struct usb_device_id id_table[] = {
  50. { USB_DEVICE_AND_INTERFACE_INFO(UTSTARCOM_VENDOR_ID, UTSTARCOM_PRODUCT_PC5740, 0xff, 0x00, 0x00) },
  51. { USB_DEVICE_AND_INTERFACE_INFO(UTSTARCOM_VENDOR_ID, UTSTARCOM_PRODUCT_PC5750, 0xff, 0x00, 0x00) },
  52. { USB_DEVICE_AND_INTERFACE_INFO(UTSTARCOM_VENDOR_ID, UTSTARCOM_PRODUCT_UM150, 0xff, 0x00, 0x00) },
  53. { USB_DEVICE_AND_INTERFACE_INFO(UTSTARCOM_VENDOR_ID, UTSTARCOM_PRODUCT_UM175_V1, 0xff, 0x00, 0x00) },
  54. { USB_DEVICE_AND_INTERFACE_INFO(UTSTARCOM_VENDOR_ID, UTSTARCOM_PRODUCT_UM175_V2, 0xff, 0x00, 0x00) },
  55. { USB_DEVICE_AND_INTERFACE_INFO(UTSTARCOM_VENDOR_ID, UTSTARCOM_PRODUCT_UM175_ALLTEL, 0xff, 0x00, 0x00) },
  56. { USB_DEVICE_AND_INTERFACE_INFO(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_CDU550, 0xff, 0xff, 0x00) },
  57. { USB_DEVICE_AND_INTERFACE_INFO(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_CDX650, 0xff, 0xff, 0x00) },
  58. { USB_DEVICE_AND_INTERFACE_INFO(LG_VENDOR_ID, LG_PRODUCT_VX4400_6000, 0xff, 0xff, 0x00) },
  59. { USB_DEVICE_AND_INTERFACE_INFO(SANYO_VENDOR_ID, SANYO_PRODUCT_KATANA_LX, 0xff, 0xff, 0x00) },
  60. { USB_DEVICE_AND_INTERFACE_INFO(SAMSUNG_VENDOR_ID, SAMSUNG_PRODUCT_U520, 0xff, 0x00, 0x00) },
  61. { USB_VENDOR_AND_INTERFACE_INFO(UTSTARCOM_VENDOR_ID, 0xff, 0xfd, 0xff) }, /* NMEA */
  62. { USB_VENDOR_AND_INTERFACE_INFO(UTSTARCOM_VENDOR_ID, 0xff, 0xfe, 0xff) }, /* WMC */
  63. { USB_VENDOR_AND_INTERFACE_INFO(UTSTARCOM_VENDOR_ID, 0xff, 0xff, 0xff) }, /* DIAG */
  64. { USB_DEVICE_AND_INTERFACE_INFO(0x1fac, 0x0151, 0xff, 0xff, 0xff) },
  65. { },
  66. };
  67. MODULE_DEVICE_TABLE(usb, id_table);
  68. static struct usb_serial_driver qcaux_device = {
  69. .driver = {
  70. .owner = THIS_MODULE,
  71. .name = "qcaux",
  72. },
  73. .id_table = id_table,
  74. .num_ports = 1,
  75. };
  76. static struct usb_serial_driver * const serial_drivers[] = {
  77. &qcaux_device, NULL
  78. };
  79. module_usb_serial_driver(serial_drivers, id_table);
  80. MODULE_LICENSE("GPL");