usb_wwan.c 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919
  1. /*
  2. USB Driver layer for GSM modems
  3. Copyright (C) 2005 Matthias Urlichs <smurf@smurf.noris.de>
  4. This driver is free software; you can redistribute it and/or modify
  5. it under the terms of Version 2 of the GNU General Public License as
  6. published by the Free Software Foundation.
  7. Portions copied from the Keyspan driver by Hugh Blemings <hugh@blemings.org>
  8. History: see the git log.
  9. Work sponsored by: Sigos GmbH, Germany <info@sigos.de>
  10. This driver exists because the "normal" serial driver doesn't work too well
  11. with GSM modems. Issues:
  12. - data loss -- one single Receive URB is not nearly enough
  13. - controlling the baud rate doesn't make sense
  14. */
  15. #define DRIVER_VERSION "v0.7.2"
  16. #define DRIVER_AUTHOR "Matthias Urlichs <smurf@smurf.noris.de>"
  17. #define DRIVER_DESC "USB Driver for GSM modems"
  18. #include <linux/kernel.h>
  19. #include <linux/jiffies.h>
  20. #include <linux/errno.h>
  21. #include <linux/slab.h>
  22. #include <linux/tty.h>
  23. #include <linux/tty_flip.h>
  24. #include <linux/module.h>
  25. #include <linux/bitops.h>
  26. #include <linux/uaccess.h>
  27. #include <linux/usb.h>
  28. #include <linux/usb/serial.h>
  29. #include <linux/serial.h>
  30. #include "usb-wwan.h"
  31. static bool debug;
  32. void usb_wwan_dtr_rts(struct usb_serial_port *port, int on)
  33. {
  34. struct usb_wwan_port_private *portdata;
  35. struct usb_wwan_intf_private *intfdata;
  36. dbg("%s", __func__);
  37. intfdata = port->serial->private;
  38. if (!intfdata->send_setup)
  39. return;
  40. portdata = usb_get_serial_port_data(port);
  41. /* FIXME: locking */
  42. portdata->rts_state = on;
  43. portdata->dtr_state = on;
  44. intfdata->send_setup(port);
  45. }
  46. EXPORT_SYMBOL(usb_wwan_dtr_rts);
  47. void usb_wwan_set_termios(struct tty_struct *tty,
  48. struct usb_serial_port *port,
  49. struct ktermios *old_termios)
  50. {
  51. struct usb_wwan_intf_private *intfdata = port->serial->private;
  52. dbg("%s", __func__);
  53. /* Doesn't support option setting */
  54. tty_termios_copy_hw(tty->termios, old_termios);
  55. if (intfdata->send_setup)
  56. intfdata->send_setup(port);
  57. }
  58. EXPORT_SYMBOL(usb_wwan_set_termios);
  59. int usb_wwan_tiocmget(struct tty_struct *tty)
  60. {
  61. struct usb_serial_port *port = tty->driver_data;
  62. unsigned int value;
  63. struct usb_wwan_port_private *portdata;
  64. portdata = usb_get_serial_port_data(port);
  65. value = ((portdata->rts_state) ? TIOCM_RTS : 0) |
  66. ((portdata->dtr_state) ? TIOCM_DTR : 0) |
  67. ((portdata->cts_state) ? TIOCM_CTS : 0) |
  68. ((portdata->dsr_state) ? TIOCM_DSR : 0) |
  69. ((portdata->dcd_state) ? TIOCM_CAR : 0) |
  70. ((portdata->ri_state) ? TIOCM_RNG : 0);
  71. return value;
  72. }
  73. EXPORT_SYMBOL(usb_wwan_tiocmget);
  74. int usb_wwan_tiocmset(struct tty_struct *tty,
  75. unsigned int set, unsigned int clear)
  76. {
  77. struct usb_serial_port *port = tty->driver_data;
  78. struct usb_wwan_port_private *portdata;
  79. struct usb_wwan_intf_private *intfdata;
  80. portdata = usb_get_serial_port_data(port);
  81. intfdata = port->serial->private;
  82. if (!intfdata->send_setup)
  83. return -EINVAL;
  84. /* FIXME: what locks portdata fields ? */
  85. if (set & TIOCM_RTS)
  86. portdata->rts_state = 1;
  87. if (set & TIOCM_DTR)
  88. portdata->dtr_state = 1;
  89. if (clear & TIOCM_RTS)
  90. portdata->rts_state = 0;
  91. if (clear & TIOCM_DTR)
  92. portdata->dtr_state = 0;
  93. return intfdata->send_setup(port);
  94. }
  95. EXPORT_SYMBOL(usb_wwan_tiocmset);
  96. static int get_serial_info(struct usb_serial_port *port,
  97. struct serial_struct __user *retinfo)
  98. {
  99. struct serial_struct tmp;
  100. if (!retinfo)
  101. return -EFAULT;
  102. memset(&tmp, 0, sizeof(tmp));
  103. tmp.line = port->serial->minor;
  104. tmp.port = port->number;
  105. tmp.baud_base = tty_get_baud_rate(port->port.tty);
  106. tmp.close_delay = port->port.close_delay / 10;
  107. tmp.closing_wait = port->port.closing_wait == ASYNC_CLOSING_WAIT_NONE ?
  108. ASYNC_CLOSING_WAIT_NONE :
  109. port->port.closing_wait / 10;
  110. if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
  111. return -EFAULT;
  112. return 0;
  113. }
  114. static int set_serial_info(struct usb_serial_port *port,
  115. struct serial_struct __user *newinfo)
  116. {
  117. struct serial_struct new_serial;
  118. unsigned int closing_wait, close_delay;
  119. int retval = 0;
  120. if (copy_from_user(&new_serial, newinfo, sizeof(new_serial)))
  121. return -EFAULT;
  122. close_delay = new_serial.close_delay * 10;
  123. closing_wait = new_serial.closing_wait == ASYNC_CLOSING_WAIT_NONE ?
  124. ASYNC_CLOSING_WAIT_NONE : new_serial.closing_wait * 10;
  125. mutex_lock(&port->port.mutex);
  126. if (!capable(CAP_SYS_ADMIN)) {
  127. if ((close_delay != port->port.close_delay) ||
  128. (closing_wait != port->port.closing_wait))
  129. retval = -EPERM;
  130. else
  131. retval = -EOPNOTSUPP;
  132. } else {
  133. port->port.close_delay = close_delay;
  134. port->port.closing_wait = closing_wait;
  135. }
  136. mutex_unlock(&port->port.mutex);
  137. return retval;
  138. }
  139. int usb_wwan_ioctl(struct tty_struct *tty,
  140. unsigned int cmd, unsigned long arg)
  141. {
  142. struct usb_serial_port *port = tty->driver_data;
  143. dbg("%s cmd 0x%04x", __func__, cmd);
  144. switch (cmd) {
  145. case TIOCGSERIAL:
  146. return get_serial_info(port,
  147. (struct serial_struct __user *) arg);
  148. case TIOCSSERIAL:
  149. return set_serial_info(port,
  150. (struct serial_struct __user *) arg);
  151. default:
  152. break;
  153. }
  154. dbg("%s arg not supported", __func__);
  155. return -ENOIOCTLCMD;
  156. }
  157. EXPORT_SYMBOL(usb_wwan_ioctl);
  158. /* Write */
  159. int usb_wwan_write(struct tty_struct *tty, struct usb_serial_port *port,
  160. const unsigned char *buf, int count)
  161. {
  162. struct usb_wwan_port_private *portdata;
  163. struct usb_wwan_intf_private *intfdata;
  164. int i;
  165. int left, todo;
  166. struct urb *this_urb = NULL; /* spurious */
  167. int err;
  168. unsigned long flags;
  169. portdata = usb_get_serial_port_data(port);
  170. intfdata = port->serial->private;
  171. dbg("%s: write (%d chars)", __func__, count);
  172. i = 0;
  173. left = count;
  174. for (i = 0; left > 0 && i < N_OUT_URB; i++) {
  175. todo = left;
  176. if (todo > OUT_BUFLEN)
  177. todo = OUT_BUFLEN;
  178. this_urb = portdata->out_urbs[i];
  179. if (test_and_set_bit(i, &portdata->out_busy)) {
  180. if (time_before(jiffies,
  181. portdata->tx_start_time[i] + 10 * HZ))
  182. continue;
  183. usb_unlink_urb(this_urb);
  184. continue;
  185. }
  186. dbg("%s: endpoint %d buf %d", __func__,
  187. usb_pipeendpoint(this_urb->pipe), i);
  188. err = usb_autopm_get_interface_async(port->serial->interface);
  189. if (err < 0) {
  190. clear_bit(i, &portdata->out_busy);
  191. break;
  192. }
  193. /* send the data */
  194. memcpy(this_urb->transfer_buffer, buf, todo);
  195. this_urb->transfer_buffer_length = todo;
  196. spin_lock_irqsave(&intfdata->susp_lock, flags);
  197. if (intfdata->suspended) {
  198. usb_anchor_urb(this_urb, &portdata->delayed);
  199. spin_unlock_irqrestore(&intfdata->susp_lock, flags);
  200. } else {
  201. intfdata->in_flight++;
  202. spin_unlock_irqrestore(&intfdata->susp_lock, flags);
  203. usb_anchor_urb(this_urb, &portdata->submitted);
  204. err = usb_submit_urb(this_urb, GFP_ATOMIC);
  205. if (err) {
  206. dbg("usb_submit_urb %pK (write bulk) failed "
  207. "(%d)", this_urb, err);
  208. usb_unanchor_urb(this_urb);
  209. clear_bit(i, &portdata->out_busy);
  210. spin_lock_irqsave(&intfdata->susp_lock, flags);
  211. intfdata->in_flight--;
  212. spin_unlock_irqrestore(&intfdata->susp_lock,
  213. flags);
  214. usb_autopm_put_interface_async(port->serial->interface);
  215. break;
  216. }
  217. }
  218. portdata->tx_start_time[i] = jiffies;
  219. buf += todo;
  220. left -= todo;
  221. }
  222. count -= left;
  223. dbg("%s: wrote (did %d)", __func__, count);
  224. return count;
  225. }
  226. EXPORT_SYMBOL(usb_wwan_write);
  227. static void usb_wwan_in_work(struct work_struct *w)
  228. {
  229. struct usb_wwan_port_private *portdata =
  230. container_of(w, struct usb_wwan_port_private, in_work);
  231. struct usb_wwan_intf_private *intfdata;
  232. struct list_head *q = &portdata->in_urb_list;
  233. struct urb *urb;
  234. unsigned char *data;
  235. struct tty_struct *tty;
  236. struct usb_serial_port *port;
  237. int err;
  238. ssize_t len;
  239. ssize_t count;
  240. unsigned long flags;
  241. spin_lock_irqsave(&portdata->in_lock, flags);
  242. while (!list_empty(q)) {
  243. urb = list_first_entry(q, struct urb, urb_list);
  244. port = urb->context;
  245. if (port->throttle_req || port->throttled)
  246. break;
  247. tty = tty_port_tty_get(&port->port);
  248. if (!tty)
  249. break;
  250. /* list_empty() will still be false after this; it means
  251. * URB is still being processed */
  252. list_del(&urb->urb_list);
  253. spin_unlock_irqrestore(&portdata->in_lock, flags);
  254. len = urb->actual_length - portdata->n_read;
  255. data = urb->transfer_buffer + portdata->n_read;
  256. count = tty_insert_flip_string(tty, data, len);
  257. tty_flip_buffer_push(tty);
  258. tty_kref_put(tty);
  259. if (count < len) {
  260. dbg("%s: len:%d count:%d n_read:%d\n", __func__,
  261. len, count, portdata->n_read);
  262. portdata->n_read += count;
  263. port->throttled = true;
  264. /* add request back to list */
  265. spin_lock_irqsave(&portdata->in_lock, flags);
  266. list_add(&urb->urb_list, q);
  267. spin_unlock_irqrestore(&portdata->in_lock, flags);
  268. return;
  269. }
  270. /* re-init list pointer to indicate we are done with it */
  271. INIT_LIST_HEAD(&urb->urb_list);
  272. portdata->n_read = 0;
  273. intfdata = port->serial->private;
  274. spin_lock_irqsave(&intfdata->susp_lock, flags);
  275. if (!intfdata->suspended && !urb->anchor) {
  276. usb_anchor_urb(urb, &portdata->submitted);
  277. err = usb_submit_urb(urb, GFP_ATOMIC);
  278. if (err) {
  279. usb_unanchor_urb(urb);
  280. if (err != -EPERM)
  281. pr_err("%s: submit read urb failed:%d",
  282. __func__, err);
  283. }
  284. usb_mark_last_busy(port->serial->dev);
  285. }
  286. spin_unlock_irqrestore(&intfdata->susp_lock, flags);
  287. spin_lock_irqsave(&portdata->in_lock, flags);
  288. }
  289. spin_unlock_irqrestore(&portdata->in_lock, flags);
  290. }
  291. static void usb_wwan_indat_callback(struct urb *urb)
  292. {
  293. int err;
  294. int endpoint;
  295. struct usb_wwan_port_private *portdata;
  296. struct usb_wwan_intf_private *intfdata;
  297. struct usb_serial_port *port;
  298. int status = urb->status;
  299. unsigned long flags;
  300. dbg("%s: %pK", __func__, urb);
  301. endpoint = usb_pipeendpoint(urb->pipe);
  302. port = urb->context;
  303. portdata = usb_get_serial_port_data(port);
  304. intfdata = port->serial->private;
  305. usb_mark_last_busy(port->serial->dev);
  306. if ((status == -ENOENT || !status) && urb->actual_length) {
  307. spin_lock_irqsave(&portdata->in_lock, flags);
  308. list_add_tail(&urb->urb_list, &portdata->in_urb_list);
  309. spin_unlock_irqrestore(&portdata->in_lock, flags);
  310. queue_work(system_nrt_wq, &portdata->in_work);
  311. return;
  312. }
  313. dbg("%s: nonzero status: %d on endpoint %02x.",
  314. __func__, status, endpoint);
  315. spin_lock(&intfdata->susp_lock);
  316. if (intfdata->suspended || !portdata->opened) {
  317. spin_unlock(&intfdata->susp_lock);
  318. return;
  319. }
  320. spin_unlock(&intfdata->susp_lock);
  321. if (status != -ESHUTDOWN) {
  322. usb_anchor_urb(urb, &portdata->submitted);
  323. err = usb_submit_urb(urb, GFP_ATOMIC);
  324. if (err) {
  325. usb_unanchor_urb(urb);
  326. if (err != -EPERM)
  327. pr_err("%s: submit read urb failed:%d",
  328. __func__, err);
  329. }
  330. }
  331. }
  332. static void usb_wwan_outdat_callback(struct urb *urb)
  333. {
  334. struct usb_serial_port *port;
  335. struct usb_wwan_port_private *portdata;
  336. struct usb_wwan_intf_private *intfdata;
  337. int i;
  338. dbg("%s", __func__);
  339. port = urb->context;
  340. intfdata = port->serial->private;
  341. usb_serial_port_softint(port);
  342. usb_autopm_put_interface_async(port->serial->interface);
  343. portdata = usb_get_serial_port_data(port);
  344. spin_lock(&intfdata->susp_lock);
  345. intfdata->in_flight--;
  346. spin_unlock(&intfdata->susp_lock);
  347. for (i = 0; i < N_OUT_URB; ++i) {
  348. if (portdata->out_urbs[i] == urb) {
  349. smp_mb__before_clear_bit();
  350. clear_bit(i, &portdata->out_busy);
  351. break;
  352. }
  353. }
  354. }
  355. int usb_wwan_write_room(struct tty_struct *tty)
  356. {
  357. struct usb_serial_port *port = tty->driver_data;
  358. struct usb_wwan_port_private *portdata;
  359. int i;
  360. int data_len = 0;
  361. struct urb *this_urb;
  362. portdata = usb_get_serial_port_data(port);
  363. for (i = 0; i < N_OUT_URB; i++) {
  364. this_urb = portdata->out_urbs[i];
  365. if (this_urb && !test_bit(i, &portdata->out_busy))
  366. data_len += OUT_BUFLEN;
  367. }
  368. dbg("%s: %d", __func__, data_len);
  369. return data_len;
  370. }
  371. EXPORT_SYMBOL(usb_wwan_write_room);
  372. int usb_wwan_chars_in_buffer(struct tty_struct *tty)
  373. {
  374. struct usb_serial_port *port = tty->driver_data;
  375. struct usb_wwan_port_private *portdata;
  376. int i;
  377. int data_len = 0;
  378. struct urb *this_urb;
  379. portdata = usb_get_serial_port_data(port);
  380. for (i = 0; i < N_OUT_URB; i++) {
  381. this_urb = portdata->out_urbs[i];
  382. /* FIXME: This locking is insufficient as this_urb may
  383. go unused during the test */
  384. if (this_urb && test_bit(i, &portdata->out_busy))
  385. data_len += this_urb->transfer_buffer_length;
  386. }
  387. dbg("%s: %d", __func__, data_len);
  388. return data_len;
  389. }
  390. EXPORT_SYMBOL(usb_wwan_chars_in_buffer);
  391. void usb_wwan_throttle(struct tty_struct *tty)
  392. {
  393. struct usb_serial_port *port = tty->driver_data;
  394. port->throttle_req = true;
  395. dbg("%s:\n", __func__);
  396. }
  397. EXPORT_SYMBOL(usb_wwan_throttle);
  398. void usb_wwan_unthrottle(struct tty_struct *tty)
  399. {
  400. struct usb_serial_port *port = tty->driver_data;
  401. struct usb_wwan_port_private *portdata;
  402. portdata = usb_get_serial_port_data(port);
  403. dbg("%s:\n", __func__);
  404. port->throttle_req = false;
  405. port->throttled = false;
  406. queue_work(system_nrt_wq, &portdata->in_work);
  407. }
  408. EXPORT_SYMBOL(usb_wwan_unthrottle);
  409. int usb_wwan_open(struct tty_struct *tty, struct usb_serial_port *port)
  410. {
  411. struct usb_wwan_port_private *portdata;
  412. struct usb_wwan_intf_private *intfdata;
  413. struct usb_serial *serial = port->serial;
  414. int i, err;
  415. struct urb *urb;
  416. portdata = usb_get_serial_port_data(port);
  417. intfdata = serial->private;
  418. /* explicitly set the driver mode to raw */
  419. tty->raw = 1;
  420. tty->real_raw = 1;
  421. set_bit(TTY_NO_WRITE_SPLIT, &tty->flags);
  422. dbg("%s", __func__);
  423. if (port->interrupt_in_urb) {
  424. err = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
  425. if (err) {
  426. dev_dbg(&port->dev, "%s: submit int urb failed: %d\n",
  427. __func__, err);
  428. }
  429. }
  430. /* Start reading from the IN endpoint */
  431. for (i = 0; i < N_IN_URB; i++) {
  432. urb = portdata->in_urbs[i];
  433. if (!urb)
  434. continue;
  435. usb_anchor_urb(urb, &portdata->submitted);
  436. err = usb_submit_urb(urb, GFP_KERNEL);
  437. if (err) {
  438. usb_unanchor_urb(urb);
  439. dbg("%s: submit urb %d failed (%d) %d",
  440. __func__, i, err, urb->transfer_buffer_length);
  441. }
  442. }
  443. if (intfdata->send_setup)
  444. intfdata->send_setup(port);
  445. serial->interface->needs_remote_wakeup = 1;
  446. spin_lock_irq(&intfdata->susp_lock);
  447. portdata->opened = 1;
  448. spin_unlock_irq(&intfdata->susp_lock);
  449. /* this balances a get in the generic USB serial code */
  450. usb_autopm_put_interface(serial->interface);
  451. return 0;
  452. }
  453. EXPORT_SYMBOL(usb_wwan_open);
  454. static void unbusy_queued_urb(struct urb *urb,
  455. struct usb_wwan_port_private *portdata)
  456. {
  457. int i;
  458. for (i = 0; i < N_OUT_URB; i++) {
  459. if (urb == portdata->out_urbs[i]) {
  460. clear_bit(i, &portdata->out_busy);
  461. break;
  462. }
  463. }
  464. }
  465. void usb_wwan_close(struct usb_serial_port *port)
  466. {
  467. int i;
  468. struct usb_serial *serial = port->serial;
  469. struct usb_wwan_port_private *portdata;
  470. struct usb_wwan_intf_private *intfdata = port->serial->private;
  471. struct urb *urb;
  472. dbg("%s", __func__);
  473. portdata = usb_get_serial_port_data(port);
  474. if (serial->dev) {
  475. /* Stop reading/writing urbs */
  476. spin_lock_irq(&intfdata->susp_lock);
  477. portdata->opened = 0;
  478. spin_unlock_irq(&intfdata->susp_lock);
  479. for (;;) {
  480. urb = usb_get_from_anchor(&portdata->delayed);
  481. if (!urb)
  482. break;
  483. unbusy_queued_urb(urb, portdata);
  484. usb_autopm_put_interface_async(serial->interface);
  485. }
  486. for (i = 0; i < N_IN_URB; i++)
  487. usb_kill_urb(portdata->in_urbs[i]);
  488. for (i = 0; i < N_OUT_URB; i++)
  489. usb_kill_urb(portdata->out_urbs[i]);
  490. usb_kill_urb(port->interrupt_in_urb);
  491. /* balancing - important as an error cannot be handled*/
  492. usb_autopm_get_interface_no_resume(serial->interface);
  493. serial->interface->needs_remote_wakeup = 0;
  494. }
  495. }
  496. EXPORT_SYMBOL(usb_wwan_close);
  497. /* Helper functions used by usb_wwan_setup_urbs */
  498. static struct urb *usb_wwan_setup_urb(struct usb_serial *serial, int endpoint,
  499. int dir, void *ctx, char *buf, int len,
  500. void (*callback) (struct urb *))
  501. {
  502. struct urb *urb;
  503. if (endpoint == -1)
  504. return NULL; /* endpoint not needed */
  505. urb = usb_alloc_urb(0, GFP_KERNEL); /* No ISO */
  506. if (urb == NULL) {
  507. dbg("%s: alloc for endpoint %d failed.", __func__, endpoint);
  508. return NULL;
  509. }
  510. /* Fill URB using supplied data. */
  511. usb_fill_bulk_urb(urb, serial->dev,
  512. usb_sndbulkpipe(serial->dev, endpoint) | dir,
  513. buf, len, callback, ctx);
  514. return urb;
  515. }
  516. /* Setup urbs */
  517. static void usb_wwan_setup_urbs(struct usb_serial *serial)
  518. {
  519. int i, j;
  520. struct usb_serial_port *port;
  521. struct usb_wwan_port_private *portdata;
  522. dbg("%s", __func__);
  523. for (i = 0; i < serial->num_ports; i++) {
  524. port = serial->port[i];
  525. portdata = usb_get_serial_port_data(port);
  526. /* Do indat endpoints first */
  527. for (j = 0; j < N_IN_URB; ++j) {
  528. portdata->in_urbs[j] = usb_wwan_setup_urb(serial,
  529. port->
  530. bulk_in_endpointAddress,
  531. USB_DIR_IN,
  532. port,
  533. portdata->
  534. in_buffer[j],
  535. IN_BUFLEN,
  536. usb_wwan_indat_callback);
  537. }
  538. /* outdat endpoints */
  539. for (j = 0; j < N_OUT_URB; ++j) {
  540. portdata->out_urbs[j] = usb_wwan_setup_urb(serial,
  541. port->
  542. bulk_out_endpointAddress,
  543. USB_DIR_OUT,
  544. port,
  545. portdata->
  546. out_buffer
  547. [j],
  548. OUT_BUFLEN,
  549. usb_wwan_outdat_callback);
  550. }
  551. }
  552. }
  553. int usb_wwan_startup(struct usb_serial *serial)
  554. {
  555. int i, j;
  556. struct usb_serial_port *port;
  557. struct usb_wwan_port_private *portdata;
  558. u8 *buffer;
  559. dbg("%s", __func__);
  560. /* Now setup per port private data */
  561. for (i = 0; i < serial->num_ports; i++) {
  562. port = serial->port[i];
  563. portdata = kzalloc(sizeof(*portdata), GFP_KERNEL);
  564. if (!portdata) {
  565. dbg("%s: kmalloc for usb_wwan_port_private (%d) failed!.",
  566. __func__, i);
  567. return 1;
  568. }
  569. init_usb_anchor(&portdata->delayed);
  570. init_usb_anchor(&portdata->submitted);
  571. INIT_WORK(&portdata->in_work, usb_wwan_in_work);
  572. INIT_LIST_HEAD(&portdata->in_urb_list);
  573. spin_lock_init(&portdata->in_lock);
  574. for (j = 0; j < N_IN_URB; j++) {
  575. buffer = kmalloc(IN_BUFLEN, GFP_KERNEL);
  576. if (!buffer)
  577. goto bail_out_error;
  578. portdata->in_buffer[j] = buffer;
  579. }
  580. for (j = 0; j < N_OUT_URB; j++) {
  581. buffer = kmalloc(OUT_BUFLEN, GFP_KERNEL);
  582. if (!buffer)
  583. goto bail_out_error2;
  584. portdata->out_buffer[j] = buffer;
  585. }
  586. usb_set_serial_port_data(port, portdata);
  587. }
  588. usb_wwan_setup_urbs(serial);
  589. return 0;
  590. bail_out_error2:
  591. for (j = 0; j < N_OUT_URB; j++)
  592. kfree(portdata->out_buffer[j]);
  593. bail_out_error:
  594. for (j = 0; j < N_IN_URB; j++)
  595. kfree(portdata->in_buffer[j]);
  596. kfree(portdata);
  597. return 1;
  598. }
  599. EXPORT_SYMBOL(usb_wwan_startup);
  600. static void stop_read_write_urbs(struct usb_serial *serial)
  601. {
  602. int i;
  603. struct usb_serial_port *port;
  604. struct usb_wwan_port_private *portdata;
  605. /* Stop reading/writing urbs */
  606. for (i = 0; i < serial->num_ports; ++i) {
  607. port = serial->port[i];
  608. portdata = usb_get_serial_port_data(port);
  609. usb_kill_anchored_urbs(&portdata->submitted);
  610. }
  611. }
  612. void usb_wwan_disconnect(struct usb_serial *serial)
  613. {
  614. dbg("%s", __func__);
  615. stop_read_write_urbs(serial);
  616. }
  617. EXPORT_SYMBOL(usb_wwan_disconnect);
  618. void usb_wwan_release(struct usb_serial *serial)
  619. {
  620. int i, j;
  621. struct usb_serial_port *port;
  622. struct usb_wwan_port_private *portdata;
  623. struct urb *urb;
  624. struct list_head *q;
  625. unsigned long flags;
  626. /* Now free them */
  627. for (i = 0; i < serial->num_ports; ++i) {
  628. port = serial->port[i];
  629. portdata = usb_get_serial_port_data(port);
  630. cancel_work_sync(&portdata->in_work);
  631. /* TBD: do we really need this */
  632. spin_lock_irqsave(&portdata->in_lock, flags);
  633. q = &portdata->in_urb_list;
  634. while (!list_empty(q)) {
  635. urb = list_first_entry(q, struct urb, urb_list);
  636. list_del_init(&urb->urb_list);
  637. }
  638. spin_unlock_irqrestore(&portdata->in_lock, flags);
  639. for (j = 0; j < N_IN_URB; j++) {
  640. usb_free_urb(portdata->in_urbs[j]);
  641. kfree(portdata->in_buffer[j]);
  642. portdata->in_urbs[j] = NULL;
  643. }
  644. for (j = 0; j < N_OUT_URB; j++) {
  645. usb_free_urb(portdata->out_urbs[j]);
  646. kfree(portdata->out_buffer[j]);
  647. portdata->out_urbs[j] = NULL;
  648. }
  649. }
  650. /* Now free per port private data */
  651. for (i = 0; i < serial->num_ports; i++) {
  652. port = serial->port[i];
  653. kfree(usb_get_serial_port_data(port));
  654. }
  655. }
  656. EXPORT_SYMBOL(usb_wwan_release);
  657. #ifdef CONFIG_PM
  658. int usb_wwan_suspend(struct usb_serial *serial, pm_message_t message)
  659. {
  660. struct usb_wwan_intf_private *intfdata = serial->private;
  661. dbg("%s entered", __func__);
  662. spin_lock_irq(&intfdata->susp_lock);
  663. if (PMSG_IS_AUTO(message)) {
  664. if (intfdata->in_flight) {
  665. spin_unlock_irq(&intfdata->susp_lock);
  666. return -EBUSY;
  667. }
  668. }
  669. intfdata->suspended = 1;
  670. spin_unlock_irq(&intfdata->susp_lock);
  671. stop_read_write_urbs(serial);
  672. return 0;
  673. }
  674. EXPORT_SYMBOL(usb_wwan_suspend);
  675. static int play_delayed(struct usb_serial_port *port)
  676. {
  677. struct usb_wwan_intf_private *data;
  678. struct usb_wwan_port_private *portdata;
  679. struct urb *urb;
  680. int err = 0;
  681. portdata = usb_get_serial_port_data(port);
  682. data = port->serial->private;
  683. while ((urb = usb_get_from_anchor(&portdata->delayed))) {
  684. usb_anchor_urb(urb, &portdata->submitted);
  685. err = usb_submit_urb(urb, GFP_ATOMIC);
  686. if (!err) {
  687. data->in_flight++;
  688. } else {
  689. usb_unanchor_urb(urb);
  690. /* we have to throw away the rest */
  691. do {
  692. unbusy_queued_urb(urb, portdata);
  693. usb_autopm_put_interface_no_suspend(port->serial->interface);
  694. } while ((urb = usb_get_from_anchor(&portdata->delayed)));
  695. break;
  696. }
  697. }
  698. return err;
  699. }
  700. int usb_wwan_resume(struct usb_serial *serial)
  701. {
  702. int i, j;
  703. struct usb_serial_port *port;
  704. struct usb_wwan_intf_private *intfdata = serial->private;
  705. struct usb_wwan_port_private *portdata;
  706. struct urb *urb;
  707. int err;
  708. int err_count = 0;
  709. dbg("%s entered", __func__);
  710. spin_lock_irq(&intfdata->susp_lock);
  711. intfdata->suspended = 0;
  712. for (i = 0; i < serial->num_ports; i++) {
  713. /* walk all ports */
  714. port = serial->port[i];
  715. portdata = usb_get_serial_port_data(port);
  716. /* skip closed ports */
  717. if (!portdata || !portdata->opened)
  718. continue;
  719. if (port->interrupt_in_urb) {
  720. err = usb_submit_urb(port->interrupt_in_urb,
  721. GFP_ATOMIC);
  722. if (err) {
  723. dev_err(&port->dev,
  724. "%s: submit int urb failed: %d\n",
  725. __func__, err);
  726. err_count++;
  727. }
  728. }
  729. err = play_delayed(port);
  730. if (err)
  731. err_count++;
  732. for (j = 0; j < N_IN_URB; j++) {
  733. urb = portdata->in_urbs[j];
  734. /* don't re-submit if it already was submitted or if
  735. * it is being processed by in_work */
  736. if (urb->anchor || !list_empty(&urb->urb_list))
  737. continue;
  738. usb_anchor_urb(urb, &portdata->submitted);
  739. err = usb_submit_urb(urb, GFP_ATOMIC);
  740. if (err < 0) {
  741. err("%s: Error %d for bulk URB %d",
  742. __func__, err, i);
  743. err_count++;
  744. }
  745. }
  746. }
  747. spin_unlock_irq(&intfdata->susp_lock);
  748. if (err_count)
  749. return -EIO;
  750. return 0;
  751. }
  752. EXPORT_SYMBOL(usb_wwan_resume);
  753. #endif
  754. MODULE_AUTHOR(DRIVER_AUTHOR);
  755. MODULE_DESCRIPTION(DRIVER_DESC);
  756. MODULE_VERSION(DRIVER_VERSION);
  757. MODULE_LICENSE("GPL");
  758. module_param(debug, bool, S_IRUGO | S_IWUSR);
  759. MODULE_PARM_DESC(debug, "Debug messages");