qcserial.c 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. /*
  2. * Qualcomm Serial USB driver
  3. *
  4. * Copyright (c) 2008 QUALCOMM Incorporated.
  5. * Copyright (c) 2009 Greg Kroah-Hartman <gregkh@suse.de>
  6. * Copyright (c) 2009 Novell Inc.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License version
  10. * 2 as published by the Free Software Foundation.
  11. *
  12. */
  13. #include <linux/tty.h>
  14. #include <linux/tty_flip.h>
  15. #include <linux/usb.h>
  16. #include <linux/usb/serial.h>
  17. #include <linux/slab.h>
  18. #include "usb-wwan.h"
  19. #define DRIVER_AUTHOR "Qualcomm Inc"
  20. #define DRIVER_DESC "Qualcomm USB Serial driver"
  21. static int debug;
  22. static const struct usb_device_id id_table[] = {
  23. {USB_DEVICE(0x05c6, 0x9211)}, /* Acer Gobi QDL device */
  24. {USB_DEVICE(0x05c6, 0x9212)}, /* Acer Gobi Modem Device */
  25. {USB_DEVICE(0x03f0, 0x1f1d)}, /* HP un2400 Gobi Modem Device */
  26. {USB_DEVICE(0x03f0, 0x201d)}, /* HP un2400 Gobi QDL Device */
  27. {USB_DEVICE(0x04da, 0x250d)}, /* Panasonic Gobi Modem device */
  28. {USB_DEVICE(0x04da, 0x250c)}, /* Panasonic Gobi QDL device */
  29. {USB_DEVICE(0x413c, 0x8172)}, /* Dell Gobi Modem device */
  30. {USB_DEVICE(0x413c, 0x8171)}, /* Dell Gobi QDL device */
  31. {USB_DEVICE(0x1410, 0xa001)}, /* Novatel Gobi Modem device */
  32. {USB_DEVICE(0x1410, 0xa008)}, /* Novatel Gobi QDL device */
  33. {USB_DEVICE(0x0b05, 0x1776)}, /* Asus Gobi Modem device */
  34. {USB_DEVICE(0x0b05, 0x1774)}, /* Asus Gobi QDL device */
  35. {USB_DEVICE(0x19d2, 0xfff3)}, /* ONDA Gobi Modem device */
  36. {USB_DEVICE(0x19d2, 0xfff2)}, /* ONDA Gobi QDL device */
  37. {USB_DEVICE(0x1557, 0x0a80)}, /* OQO Gobi QDL device */
  38. {USB_DEVICE(0x05c6, 0x9001)}, /* Generic Gobi Modem device */
  39. {USB_DEVICE(0x05c6, 0x9002)}, /* Generic Gobi Modem device */
  40. {USB_DEVICE(0x05c6, 0x9202)}, /* Generic Gobi Modem device */
  41. {USB_DEVICE(0x05c6, 0x9203)}, /* Generic Gobi Modem device */
  42. {USB_DEVICE(0x05c6, 0x9222)}, /* Generic Gobi Modem device */
  43. {USB_DEVICE(0x05c6, 0x9008)}, /* Generic Gobi QDL device */
  44. {USB_DEVICE(0x05c6, 0x9201)}, /* Generic Gobi QDL device */
  45. {USB_DEVICE(0x05c6, 0x9221)}, /* Generic Gobi QDL device */
  46. {USB_DEVICE(0x05c6, 0x9231)}, /* Generic Gobi QDL device */
  47. {USB_DEVICE(0x1f45, 0x0001)}, /* Unknown Gobi QDL device */
  48. {USB_DEVICE(0x413c, 0x8185)}, /* Dell Gobi 2000 QDL device (N0218, VU936) */
  49. {USB_DEVICE(0x413c, 0x8186)}, /* Dell Gobi 2000 Modem device (N0218, VU936) */
  50. {USB_DEVICE(0x05c6, 0x9224)}, /* Sony Gobi 2000 QDL device (N0279, VU730) */
  51. {USB_DEVICE(0x05c6, 0x9225)}, /* Sony Gobi 2000 Modem device (N0279, VU730) */
  52. {USB_DEVICE(0x05c6, 0x9244)}, /* Samsung Gobi 2000 QDL device (VL176) */
  53. {USB_DEVICE(0x05c6, 0x9245)}, /* Samsung Gobi 2000 Modem device (VL176) */
  54. {USB_DEVICE(0x03f0, 0x241d)}, /* HP Gobi 2000 QDL device (VP412) */
  55. {USB_DEVICE(0x03f0, 0x251d)}, /* HP Gobi 2000 Modem device (VP412) */
  56. {USB_DEVICE(0x05c6, 0x9214)}, /* Acer Gobi 2000 QDL device (VP413) */
  57. {USB_DEVICE(0x05c6, 0x9215)}, /* Acer Gobi 2000 Modem device (VP413) */
  58. {USB_DEVICE(0x05c6, 0x9264)}, /* Asus Gobi 2000 QDL device (VR305) */
  59. {USB_DEVICE(0x05c6, 0x9265)}, /* Asus Gobi 2000 Modem device (VR305) */
  60. {USB_DEVICE(0x05c6, 0x9234)}, /* Top Global Gobi 2000 QDL device (VR306) */
  61. {USB_DEVICE(0x05c6, 0x9235)}, /* Top Global Gobi 2000 Modem device (VR306) */
  62. {USB_DEVICE(0x05c6, 0x9274)}, /* iRex Technologies Gobi 2000 QDL device (VR307) */
  63. {USB_DEVICE(0x05c6, 0x9275)}, /* iRex Technologies Gobi 2000 Modem device (VR307) */
  64. {USB_DEVICE(0x1199, 0x9000)}, /* Sierra Wireless Gobi 2000 QDL device (VT773) */
  65. {USB_DEVICE(0x1199, 0x9001)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
  66. {USB_DEVICE(0x1199, 0x9002)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
  67. {USB_DEVICE(0x1199, 0x9003)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
  68. {USB_DEVICE(0x1199, 0x9004)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
  69. {USB_DEVICE(0x1199, 0x9005)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
  70. {USB_DEVICE(0x1199, 0x9006)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
  71. {USB_DEVICE(0x1199, 0x9007)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
  72. {USB_DEVICE(0x1199, 0x9008)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
  73. {USB_DEVICE(0x1199, 0x9009)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
  74. {USB_DEVICE(0x1199, 0x900a)}, /* Sierra Wireless Gobi 2000 Modem device (VT773) */
  75. {USB_DEVICE(0x16d8, 0x8001)}, /* CMDTech Gobi 2000 QDL device (VU922) */
  76. {USB_DEVICE(0x16d8, 0x8002)}, /* CMDTech Gobi 2000 Modem device (VU922) */
  77. {USB_DEVICE(0x05c6, 0x9204)}, /* Gobi 2000 QDL device */
  78. {USB_DEVICE(0x05c6, 0x9205)}, /* Gobi 2000 Modem device */
  79. { } /* Terminating entry */
  80. };
  81. MODULE_DEVICE_TABLE(usb, id_table);
  82. static struct usb_driver qcdriver = {
  83. .name = "qcserial",
  84. .probe = usb_serial_probe,
  85. .disconnect = usb_serial_disconnect,
  86. .id_table = id_table,
  87. .suspend = usb_serial_suspend,
  88. .resume = usb_serial_resume,
  89. .supports_autosuspend = true,
  90. };
  91. static int qcprobe(struct usb_serial *serial, const struct usb_device_id *id)
  92. {
  93. struct usb_wwan_intf_private *data;
  94. struct usb_host_interface *intf = serial->interface->cur_altsetting;
  95. int retval = -ENODEV;
  96. __u8 nintf;
  97. __u8 ifnum;
  98. dbg("%s", __func__);
  99. nintf = serial->dev->actconfig->desc.bNumInterfaces;
  100. dbg("Num Interfaces = %d", nintf);
  101. ifnum = intf->desc.bInterfaceNumber;
  102. dbg("This Interface = %d", ifnum);
  103. data = serial->private = kzalloc(sizeof(struct usb_wwan_intf_private),
  104. GFP_KERNEL);
  105. if (!data)
  106. return -ENOMEM;
  107. spin_lock_init(&data->susp_lock);
  108. switch (nintf) {
  109. case 1:
  110. /* QDL mode */
  111. /* Gobi 2000 has a single altsetting, older ones have two */
  112. if (serial->interface->num_altsetting == 2)
  113. intf = &serial->interface->altsetting[1];
  114. else if (serial->interface->num_altsetting > 2)
  115. break;
  116. if (intf->desc.bNumEndpoints == 2 &&
  117. usb_endpoint_is_bulk_in(&intf->endpoint[0].desc) &&
  118. usb_endpoint_is_bulk_out(&intf->endpoint[1].desc)) {
  119. dbg("QDL port found");
  120. if (serial->interface->num_altsetting == 1)
  121. return 0;
  122. retval = usb_set_interface(serial->dev, ifnum, 1);
  123. if (retval < 0) {
  124. dev_err(&serial->dev->dev,
  125. "Could not set interface, error %d\n",
  126. retval);
  127. retval = -ENODEV;
  128. }
  129. return retval;
  130. }
  131. break;
  132. case 3:
  133. case 4:
  134. /* Composite mode */
  135. if (ifnum == 2) {
  136. dbg("Modem port found");
  137. retval = usb_set_interface(serial->dev, ifnum, 0);
  138. if (retval < 0) {
  139. dev_err(&serial->dev->dev,
  140. "Could not set interface, error %d\n",
  141. retval);
  142. retval = -ENODEV;
  143. }
  144. return retval;
  145. }
  146. break;
  147. default:
  148. dev_err(&serial->dev->dev,
  149. "unknown number of interfaces: %d\n", nintf);
  150. return -ENODEV;
  151. }
  152. return retval;
  153. }
  154. static struct usb_serial_driver qcdevice = {
  155. .driver = {
  156. .owner = THIS_MODULE,
  157. .name = "qcserial",
  158. },
  159. .description = "Qualcomm USB modem",
  160. .id_table = id_table,
  161. .usb_driver = &qcdriver,
  162. .num_ports = 1,
  163. .probe = qcprobe,
  164. .open = usb_wwan_open,
  165. .close = usb_wwan_close,
  166. .write = usb_wwan_write,
  167. .write_room = usb_wwan_write_room,
  168. .chars_in_buffer = usb_wwan_chars_in_buffer,
  169. .attach = usb_wwan_startup,
  170. .disconnect = usb_wwan_disconnect,
  171. .release = usb_wwan_release,
  172. #ifdef CONFIG_PM
  173. .suspend = usb_wwan_suspend,
  174. .resume = usb_wwan_resume,
  175. #endif
  176. };
  177. static int __init qcinit(void)
  178. {
  179. int retval;
  180. retval = usb_serial_register(&qcdevice);
  181. if (retval)
  182. return retval;
  183. retval = usb_register(&qcdriver);
  184. if (retval) {
  185. usb_serial_deregister(&qcdevice);
  186. return retval;
  187. }
  188. return 0;
  189. }
  190. static void __exit qcexit(void)
  191. {
  192. usb_deregister(&qcdriver);
  193. usb_serial_deregister(&qcdevice);
  194. }
  195. module_init(qcinit);
  196. module_exit(qcexit);
  197. MODULE_AUTHOR(DRIVER_AUTHOR);
  198. MODULE_DESCRIPTION(DRIVER_DESC);
  199. MODULE_LICENSE("GPL v2");
  200. module_param(debug, bool, S_IRUGO | S_IWUSR);
  201. MODULE_PARM_DESC(debug, "Debug enabled or not");