f_acm.c 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838
  1. /*
  2. * f_acm.c -- USB CDC serial (ACM) function driver
  3. *
  4. * Copyright (C) 2003 Al Borchers (alborchers@steinerpoint.com)
  5. * Copyright (C) 2008 by David Brownell
  6. * Copyright (C) 2008 by Nokia Corporation
  7. * Copyright (C) 2009 by Samsung Electronics
  8. * Author: Michal Nazarewicz (mina86@mina86.com)
  9. *
  10. * This software is distributed under the terms of the GNU General
  11. * Public License ("GPL") as published by the Free Software Foundation,
  12. * either version 2 of that License or (at your option) any later version.
  13. */
  14. /* #define VERBOSE_DEBUG */
  15. #include <linux/slab.h>
  16. #include <linux/kernel.h>
  17. #include <linux/module.h>
  18. #include <linux/device.h>
  19. #include <linux/err.h>
  20. #include "u_serial.h"
  21. #include "gadget_chips.h"
  22. /*
  23. * This CDC ACM function support just wraps control functions and
  24. * notifications around the generic serial-over-usb code.
  25. *
  26. * Because CDC ACM is standardized by the USB-IF, many host operating
  27. * systems have drivers for it. Accordingly, ACM is the preferred
  28. * interop solution for serial-port type connections. The control
  29. * models are often not necessary, and in any case don't do much in
  30. * this bare-bones implementation.
  31. *
  32. * Note that even MS-Windows has some support for ACM. However, that
  33. * support is somewhat broken because when you use ACM in a composite
  34. * device, having multiple interfaces confuses the poor OS. It doesn't
  35. * seem to understand CDC Union descriptors. The new "association"
  36. * descriptors (roughly equivalent to CDC Unions) may sometimes help.
  37. */
  38. struct f_acm {
  39. struct gserial port;
  40. u8 ctrl_id, data_id;
  41. u8 port_num;
  42. u8 pending;
  43. /* lock is mostly for pending and notify_req ... they get accessed
  44. * by callbacks both from tty (open/close/break) under its spinlock,
  45. * and notify_req.complete() which can't use that lock.
  46. */
  47. spinlock_t lock;
  48. struct usb_ep *notify;
  49. struct usb_request *notify_req;
  50. struct usb_cdc_line_coding port_line_coding; /* 8-N-1 etc */
  51. /* SetControlLineState request -- CDC 1.1 section 6.2.14 (INPUT) */
  52. u16 port_handshake_bits;
  53. #define ACM_CTRL_RTS (1 << 1) /* unused with full duplex */
  54. #define ACM_CTRL_DTR (1 << 0) /* host is ready for data r/w */
  55. /* SerialState notification -- CDC 1.1 section 6.3.5 (OUTPUT) */
  56. u16 serial_state;
  57. #define ACM_CTRL_OVERRUN (1 << 6)
  58. #define ACM_CTRL_PARITY (1 << 5)
  59. #define ACM_CTRL_FRAMING (1 << 4)
  60. #define ACM_CTRL_RI (1 << 3)
  61. #define ACM_CTRL_BRK (1 << 2)
  62. #define ACM_CTRL_DSR (1 << 1)
  63. #define ACM_CTRL_DCD (1 << 0)
  64. };
  65. static inline struct f_acm *func_to_acm(struct usb_function *f)
  66. {
  67. return container_of(f, struct f_acm, port.func);
  68. }
  69. static inline struct f_acm *port_to_acm(struct gserial *p)
  70. {
  71. return container_of(p, struct f_acm, port);
  72. }
  73. /*-------------------------------------------------------------------------*/
  74. /* notification endpoint uses smallish and infrequent fixed-size messages */
  75. #define GS_NOTIFY_INTERVAL_MS 32
  76. #define GS_NOTIFY_MAXPACKET 10 /* notification + 2 bytes */
  77. /* interface and class descriptors: */
  78. static struct usb_interface_assoc_descriptor
  79. acm_iad_descriptor = {
  80. .bLength = sizeof acm_iad_descriptor,
  81. .bDescriptorType = USB_DT_INTERFACE_ASSOCIATION,
  82. /* .bFirstInterface = DYNAMIC, */
  83. .bInterfaceCount = 2, // control + data
  84. .bFunctionClass = USB_CLASS_COMM,
  85. .bFunctionSubClass = USB_CDC_SUBCLASS_ACM,
  86. .bFunctionProtocol = USB_CDC_ACM_PROTO_AT_V25TER,
  87. /* .iFunction = DYNAMIC */
  88. };
  89. static struct usb_interface_descriptor acm_control_interface_desc = {
  90. .bLength = USB_DT_INTERFACE_SIZE,
  91. .bDescriptorType = USB_DT_INTERFACE,
  92. /* .bInterfaceNumber = DYNAMIC */
  93. .bNumEndpoints = 1,
  94. .bInterfaceClass = USB_CLASS_COMM,
  95. .bInterfaceSubClass = USB_CDC_SUBCLASS_ACM,
  96. .bInterfaceProtocol = USB_CDC_ACM_PROTO_AT_V25TER,
  97. /* .iInterface = DYNAMIC */
  98. };
  99. static struct usb_interface_descriptor acm_data_interface_desc = {
  100. .bLength = USB_DT_INTERFACE_SIZE,
  101. .bDescriptorType = USB_DT_INTERFACE,
  102. /* .bInterfaceNumber = DYNAMIC */
  103. .bNumEndpoints = 2,
  104. .bInterfaceClass = USB_CLASS_CDC_DATA,
  105. .bInterfaceSubClass = 0,
  106. .bInterfaceProtocol = 0,
  107. /* .iInterface = DYNAMIC */
  108. };
  109. static struct usb_cdc_header_desc acm_header_desc = {
  110. .bLength = sizeof(acm_header_desc),
  111. .bDescriptorType = USB_DT_CS_INTERFACE,
  112. .bDescriptorSubType = USB_CDC_HEADER_TYPE,
  113. .bcdCDC = cpu_to_le16(0x0110),
  114. };
  115. static struct usb_cdc_call_mgmt_descriptor
  116. acm_call_mgmt_descriptor = {
  117. .bLength = sizeof(acm_call_mgmt_descriptor),
  118. .bDescriptorType = USB_DT_CS_INTERFACE,
  119. .bDescriptorSubType = USB_CDC_CALL_MANAGEMENT_TYPE,
  120. .bmCapabilities = 0,
  121. /* .bDataInterface = DYNAMIC */
  122. };
  123. static struct usb_cdc_acm_descriptor acm_descriptor = {
  124. .bLength = sizeof(acm_descriptor),
  125. .bDescriptorType = USB_DT_CS_INTERFACE,
  126. .bDescriptorSubType = USB_CDC_ACM_TYPE,
  127. .bmCapabilities = USB_CDC_CAP_LINE,
  128. };
  129. static struct usb_cdc_union_desc acm_union_desc = {
  130. .bLength = sizeof(acm_union_desc),
  131. .bDescriptorType = USB_DT_CS_INTERFACE,
  132. .bDescriptorSubType = USB_CDC_UNION_TYPE,
  133. /* .bMasterInterface0 = DYNAMIC */
  134. /* .bSlaveInterface0 = DYNAMIC */
  135. };
  136. /* full speed support: */
  137. static struct usb_endpoint_descriptor acm_fs_notify_desc = {
  138. .bLength = USB_DT_ENDPOINT_SIZE,
  139. .bDescriptorType = USB_DT_ENDPOINT,
  140. .bEndpointAddress = USB_DIR_IN,
  141. .bmAttributes = USB_ENDPOINT_XFER_INT,
  142. .wMaxPacketSize = cpu_to_le16(GS_NOTIFY_MAXPACKET),
  143. .bInterval = GS_NOTIFY_INTERVAL_MS,
  144. };
  145. static struct usb_endpoint_descriptor acm_fs_in_desc = {
  146. .bLength = USB_DT_ENDPOINT_SIZE,
  147. .bDescriptorType = USB_DT_ENDPOINT,
  148. .bEndpointAddress = USB_DIR_IN,
  149. .bmAttributes = USB_ENDPOINT_XFER_BULK,
  150. };
  151. static struct usb_endpoint_descriptor acm_fs_out_desc = {
  152. .bLength = USB_DT_ENDPOINT_SIZE,
  153. .bDescriptorType = USB_DT_ENDPOINT,
  154. .bEndpointAddress = USB_DIR_OUT,
  155. .bmAttributes = USB_ENDPOINT_XFER_BULK,
  156. };
  157. static struct usb_descriptor_header *acm_fs_function[] = {
  158. (struct usb_descriptor_header *) &acm_iad_descriptor,
  159. (struct usb_descriptor_header *) &acm_control_interface_desc,
  160. (struct usb_descriptor_header *) &acm_header_desc,
  161. (struct usb_descriptor_header *) &acm_call_mgmt_descriptor,
  162. (struct usb_descriptor_header *) &acm_descriptor,
  163. (struct usb_descriptor_header *) &acm_union_desc,
  164. (struct usb_descriptor_header *) &acm_fs_notify_desc,
  165. (struct usb_descriptor_header *) &acm_data_interface_desc,
  166. (struct usb_descriptor_header *) &acm_fs_in_desc,
  167. (struct usb_descriptor_header *) &acm_fs_out_desc,
  168. NULL,
  169. };
  170. /* high speed support: */
  171. static struct usb_endpoint_descriptor acm_hs_notify_desc = {
  172. .bLength = USB_DT_ENDPOINT_SIZE,
  173. .bDescriptorType = USB_DT_ENDPOINT,
  174. .bEndpointAddress = USB_DIR_IN,
  175. .bmAttributes = USB_ENDPOINT_XFER_INT,
  176. .wMaxPacketSize = cpu_to_le16(GS_NOTIFY_MAXPACKET),
  177. .bInterval = USB_MS_TO_HS_INTERVAL(GS_NOTIFY_INTERVAL_MS),
  178. };
  179. static struct usb_endpoint_descriptor acm_hs_in_desc = {
  180. .bLength = USB_DT_ENDPOINT_SIZE,
  181. .bDescriptorType = USB_DT_ENDPOINT,
  182. .bmAttributes = USB_ENDPOINT_XFER_BULK,
  183. .wMaxPacketSize = cpu_to_le16(512),
  184. };
  185. static struct usb_endpoint_descriptor acm_hs_out_desc = {
  186. .bLength = USB_DT_ENDPOINT_SIZE,
  187. .bDescriptorType = USB_DT_ENDPOINT,
  188. .bmAttributes = USB_ENDPOINT_XFER_BULK,
  189. .wMaxPacketSize = cpu_to_le16(512),
  190. };
  191. static struct usb_descriptor_header *acm_hs_function[] = {
  192. (struct usb_descriptor_header *) &acm_iad_descriptor,
  193. (struct usb_descriptor_header *) &acm_control_interface_desc,
  194. (struct usb_descriptor_header *) &acm_header_desc,
  195. (struct usb_descriptor_header *) &acm_call_mgmt_descriptor,
  196. (struct usb_descriptor_header *) &acm_descriptor,
  197. (struct usb_descriptor_header *) &acm_union_desc,
  198. (struct usb_descriptor_header *) &acm_hs_notify_desc,
  199. (struct usb_descriptor_header *) &acm_data_interface_desc,
  200. (struct usb_descriptor_header *) &acm_hs_in_desc,
  201. (struct usb_descriptor_header *) &acm_hs_out_desc,
  202. NULL,
  203. };
  204. static struct usb_endpoint_descriptor acm_ss_in_desc = {
  205. .bLength = USB_DT_ENDPOINT_SIZE,
  206. .bDescriptorType = USB_DT_ENDPOINT,
  207. .bmAttributes = USB_ENDPOINT_XFER_BULK,
  208. .wMaxPacketSize = cpu_to_le16(1024),
  209. };
  210. static struct usb_endpoint_descriptor acm_ss_out_desc = {
  211. .bLength = USB_DT_ENDPOINT_SIZE,
  212. .bDescriptorType = USB_DT_ENDPOINT,
  213. .bmAttributes = USB_ENDPOINT_XFER_BULK,
  214. .wMaxPacketSize = cpu_to_le16(1024),
  215. };
  216. static struct usb_ss_ep_comp_descriptor acm_ss_bulk_comp_desc = {
  217. .bLength = sizeof acm_ss_bulk_comp_desc,
  218. .bDescriptorType = USB_DT_SS_ENDPOINT_COMP,
  219. };
  220. static struct usb_descriptor_header *acm_ss_function[] = {
  221. (struct usb_descriptor_header *) &acm_iad_descriptor,
  222. (struct usb_descriptor_header *) &acm_control_interface_desc,
  223. (struct usb_descriptor_header *) &acm_header_desc,
  224. (struct usb_descriptor_header *) &acm_call_mgmt_descriptor,
  225. (struct usb_descriptor_header *) &acm_descriptor,
  226. (struct usb_descriptor_header *) &acm_union_desc,
  227. (struct usb_descriptor_header *) &acm_hs_notify_desc,
  228. (struct usb_descriptor_header *) &acm_ss_bulk_comp_desc,
  229. (struct usb_descriptor_header *) &acm_data_interface_desc,
  230. (struct usb_descriptor_header *) &acm_ss_in_desc,
  231. (struct usb_descriptor_header *) &acm_ss_bulk_comp_desc,
  232. (struct usb_descriptor_header *) &acm_ss_out_desc,
  233. (struct usb_descriptor_header *) &acm_ss_bulk_comp_desc,
  234. NULL,
  235. };
  236. /* string descriptors: */
  237. #define ACM_CTRL_IDX 0
  238. #define ACM_DATA_IDX 1
  239. #define ACM_IAD_IDX 2
  240. /* static strings, in UTF-8 */
  241. static struct usb_string acm_string_defs[] = {
  242. [ACM_CTRL_IDX].s = "CDC Abstract Control Model (ACM)",
  243. [ACM_DATA_IDX].s = "CDC ACM Data",
  244. [ACM_IAD_IDX ].s = "CDC Serial",
  245. };
  246. static struct usb_gadget_strings acm_string_table = {
  247. .language = 0x0409, /* en-us */
  248. .strings = acm_string_defs,
  249. };
  250. static struct usb_gadget_strings *acm_strings[] = {
  251. &acm_string_table,
  252. NULL,
  253. };
  254. /*-------------------------------------------------------------------------*/
  255. /* ACM control ... data handling is delegated to tty library code.
  256. * The main task of this function is to activate and deactivate
  257. * that code based on device state; track parameters like line
  258. * speed, handshake state, and so on; and issue notifications.
  259. */
  260. static void acm_complete_set_line_coding(struct usb_ep *ep,
  261. struct usb_request *req)
  262. {
  263. struct f_acm *acm = ep->driver_data;
  264. struct usb_composite_dev *cdev = acm->port.func.config->cdev;
  265. if (req->status != 0) {
  266. DBG(cdev, "acm ttyGS%d completion, err %d\n",
  267. acm->port_num, req->status);
  268. return;
  269. }
  270. /* normal completion */
  271. if (req->actual != sizeof(acm->port_line_coding)) {
  272. DBG(cdev, "acm ttyGS%d short resp, len %d\n",
  273. acm->port_num, req->actual);
  274. usb_ep_set_halt(ep);
  275. } else {
  276. struct usb_cdc_line_coding *value = req->buf;
  277. /* REVISIT: we currently just remember this data.
  278. * If we change that, (a) validate it first, then
  279. * (b) update whatever hardware needs updating,
  280. * (c) worry about locking. This is information on
  281. * the order of 9600-8-N-1 ... most of which means
  282. * nothing unless we control a real RS232 line.
  283. */
  284. acm->port_line_coding = *value;
  285. }
  286. }
  287. static int acm_setup(struct usb_function *f, const struct usb_ctrlrequest *ctrl)
  288. {
  289. struct f_acm *acm = func_to_acm(f);
  290. struct usb_composite_dev *cdev = f->config->cdev;
  291. struct usb_request *req = cdev->req;
  292. int value = -EOPNOTSUPP;
  293. u16 w_index = le16_to_cpu(ctrl->wIndex);
  294. u16 w_value = le16_to_cpu(ctrl->wValue);
  295. u16 w_length = le16_to_cpu(ctrl->wLength);
  296. /* composite driver infrastructure handles everything except
  297. * CDC class messages; interface activation uses set_alt().
  298. *
  299. * Note CDC spec table 4 lists the ACM request profile. It requires
  300. * encapsulated command support ... we don't handle any, and respond
  301. * to them by stalling. Options include get/set/clear comm features
  302. * (not that useful) and SEND_BREAK.
  303. */
  304. switch ((ctrl->bRequestType << 8) | ctrl->bRequest) {
  305. /* SET_LINE_CODING ... just read and save what the host sends */
  306. case ((USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE) << 8)
  307. | USB_CDC_REQ_SET_LINE_CODING:
  308. if (w_length != sizeof(struct usb_cdc_line_coding)
  309. || w_index != acm->ctrl_id)
  310. goto invalid;
  311. value = w_length;
  312. cdev->gadget->ep0->driver_data = acm;
  313. req->complete = acm_complete_set_line_coding;
  314. break;
  315. /* GET_LINE_CODING ... return what host sent, or initial value */
  316. case ((USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE) << 8)
  317. | USB_CDC_REQ_GET_LINE_CODING:
  318. if (w_index != acm->ctrl_id)
  319. goto invalid;
  320. value = min_t(unsigned, w_length,
  321. sizeof(struct usb_cdc_line_coding));
  322. memcpy(req->buf, &acm->port_line_coding, value);
  323. break;
  324. /* SET_CONTROL_LINE_STATE ... save what the host sent */
  325. case ((USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE) << 8)
  326. | USB_CDC_REQ_SET_CONTROL_LINE_STATE:
  327. if (w_index != acm->ctrl_id)
  328. goto invalid;
  329. value = 0;
  330. /* FIXME we should not allow data to flow until the
  331. * host sets the ACM_CTRL_DTR bit; and when it clears
  332. * that bit, we should return to that no-flow state.
  333. */
  334. acm->port_handshake_bits = w_value;
  335. break;
  336. default:
  337. invalid:
  338. VDBG(cdev, "invalid control req%02x.%02x v%04x i%04x l%d\n",
  339. ctrl->bRequestType, ctrl->bRequest,
  340. w_value, w_index, w_length);
  341. }
  342. /* respond with data transfer or status phase? */
  343. if (value >= 0) {
  344. DBG(cdev, "acm ttyGS%d req%02x.%02x v%04x i%04x l%d\n",
  345. acm->port_num, ctrl->bRequestType, ctrl->bRequest,
  346. w_value, w_index, w_length);
  347. req->zero = 0;
  348. req->length = value;
  349. value = usb_ep_queue(cdev->gadget->ep0, req, GFP_ATOMIC);
  350. if (value < 0)
  351. ERROR(cdev, "acm response on ttyGS%d, err %d\n",
  352. acm->port_num, value);
  353. }
  354. /* device either stalls (value < 0) or reports success */
  355. return value;
  356. }
  357. static int acm_set_alt(struct usb_function *f, unsigned intf, unsigned alt)
  358. {
  359. struct f_acm *acm = func_to_acm(f);
  360. struct usb_composite_dev *cdev = f->config->cdev;
  361. /* we know alt == 0, so this is an activation or a reset */
  362. if (intf == acm->ctrl_id) {
  363. if (acm->notify->driver_data) {
  364. VDBG(cdev, "reset acm control interface %d\n", intf);
  365. usb_ep_disable(acm->notify);
  366. } else {
  367. VDBG(cdev, "init acm ctrl interface %d\n", intf);
  368. if (config_ep_by_speed(cdev->gadget, f, acm->notify))
  369. return -EINVAL;
  370. }
  371. usb_ep_enable(acm->notify);
  372. acm->notify->driver_data = acm;
  373. } else if (intf == acm->data_id) {
  374. if (acm->port.in->driver_data) {
  375. DBG(cdev, "reset acm ttyGS%d\n", acm->port_num);
  376. gserial_disconnect(&acm->port);
  377. }
  378. if (!acm->port.in->desc || !acm->port.out->desc) {
  379. DBG(cdev, "activate acm ttyGS%d\n", acm->port_num);
  380. if (config_ep_by_speed(cdev->gadget, f,
  381. acm->port.in) ||
  382. config_ep_by_speed(cdev->gadget, f,
  383. acm->port.out)) {
  384. acm->port.in->desc = NULL;
  385. acm->port.out->desc = NULL;
  386. return -EINVAL;
  387. }
  388. }
  389. gserial_connect(&acm->port, acm->port_num);
  390. } else
  391. return -EINVAL;
  392. return 0;
  393. }
  394. static void acm_disable(struct usb_function *f)
  395. {
  396. struct f_acm *acm = func_to_acm(f);
  397. struct usb_composite_dev *cdev = f->config->cdev;
  398. DBG(cdev, "acm ttyGS%d deactivated\n", acm->port_num);
  399. gserial_disconnect(&acm->port);
  400. usb_ep_disable(acm->notify);
  401. acm->notify->driver_data = NULL;
  402. }
  403. /*-------------------------------------------------------------------------*/
  404. /**
  405. * acm_cdc_notify - issue CDC notification to host
  406. * @acm: wraps host to be notified
  407. * @type: notification type
  408. * @value: Refer to cdc specs, wValue field.
  409. * @data: data to be sent
  410. * @length: size of data
  411. * Context: irqs blocked, acm->lock held, acm_notify_req non-null
  412. *
  413. * Returns zero on success or a negative errno.
  414. *
  415. * See section 6.3.5 of the CDC 1.1 specification for information
  416. * about the only notification we issue: SerialState change.
  417. */
  418. static int acm_cdc_notify(struct f_acm *acm, u8 type, u16 value,
  419. void *data, unsigned length)
  420. {
  421. struct usb_ep *ep = acm->notify;
  422. struct usb_request *req;
  423. struct usb_cdc_notification *notify;
  424. const unsigned len = sizeof(*notify) + length;
  425. void *buf;
  426. int status;
  427. req = acm->notify_req;
  428. acm->notify_req = NULL;
  429. acm->pending = false;
  430. req->length = len;
  431. notify = req->buf;
  432. buf = notify + 1;
  433. notify->bmRequestType = USB_DIR_IN | USB_TYPE_CLASS
  434. | USB_RECIP_INTERFACE;
  435. notify->bNotificationType = type;
  436. notify->wValue = cpu_to_le16(value);
  437. notify->wIndex = cpu_to_le16(acm->ctrl_id);
  438. notify->wLength = cpu_to_le16(length);
  439. memcpy(buf, data, length);
  440. /* ep_queue() can complete immediately if it fills the fifo... */
  441. spin_unlock(&acm->lock);
  442. status = usb_ep_queue(ep, req, GFP_ATOMIC);
  443. spin_lock(&acm->lock);
  444. if (status < 0) {
  445. ERROR(acm->port.func.config->cdev,
  446. "acm ttyGS%d can't notify serial state, %d\n",
  447. acm->port_num, status);
  448. acm->notify_req = req;
  449. }
  450. return status;
  451. }
  452. static int acm_notify_serial_state(struct f_acm *acm)
  453. {
  454. struct usb_composite_dev *cdev = acm->port.func.config->cdev;
  455. int status;
  456. spin_lock(&acm->lock);
  457. if (acm->notify_req) {
  458. DBG(cdev, "acm ttyGS%d serial state %04x\n",
  459. acm->port_num, acm->serial_state);
  460. status = acm_cdc_notify(acm, USB_CDC_NOTIFY_SERIAL_STATE,
  461. 0, &acm->serial_state, sizeof(acm->serial_state));
  462. } else {
  463. acm->pending = true;
  464. status = 0;
  465. }
  466. spin_unlock(&acm->lock);
  467. return status;
  468. }
  469. static void acm_cdc_notify_complete(struct usb_ep *ep, struct usb_request *req)
  470. {
  471. struct f_acm *acm = req->context;
  472. u8 doit = false;
  473. /* on this call path we do NOT hold the port spinlock,
  474. * which is why ACM needs its own spinlock
  475. */
  476. spin_lock(&acm->lock);
  477. if (req->status != -ESHUTDOWN)
  478. doit = acm->pending;
  479. acm->notify_req = req;
  480. spin_unlock(&acm->lock);
  481. if (doit)
  482. acm_notify_serial_state(acm);
  483. }
  484. /* connect == the TTY link is open */
  485. static void acm_connect(struct gserial *port)
  486. {
  487. struct f_acm *acm = port_to_acm(port);
  488. acm->serial_state |= ACM_CTRL_DSR | ACM_CTRL_DCD;
  489. acm_notify_serial_state(acm);
  490. }
  491. static void acm_disconnect(struct gserial *port)
  492. {
  493. struct f_acm *acm = port_to_acm(port);
  494. acm->serial_state &= ~(ACM_CTRL_DSR | ACM_CTRL_DCD);
  495. acm_notify_serial_state(acm);
  496. }
  497. static int acm_send_break(struct gserial *port, int duration)
  498. {
  499. struct f_acm *acm = port_to_acm(port);
  500. u16 state;
  501. state = acm->serial_state;
  502. state &= ~ACM_CTRL_BRK;
  503. if (duration)
  504. state |= ACM_CTRL_BRK;
  505. acm->serial_state = state;
  506. return acm_notify_serial_state(acm);
  507. }
  508. /*-------------------------------------------------------------------------*/
  509. /* ACM function driver setup/binding */
  510. static int
  511. acm_bind(struct usb_configuration *c, struct usb_function *f)
  512. {
  513. struct usb_composite_dev *cdev = c->cdev;
  514. struct f_acm *acm = func_to_acm(f);
  515. struct usb_string *us;
  516. int status;
  517. struct usb_ep *ep;
  518. /* REVISIT might want instance-specific strings to help
  519. * distinguish instances ...
  520. */
  521. /* maybe allocate device-global string IDs, and patch descriptors */
  522. us = usb_gstrings_attach(cdev, acm_strings,
  523. ARRAY_SIZE(acm_string_defs));
  524. if (IS_ERR(us))
  525. return PTR_ERR(us);
  526. acm_control_interface_desc.iInterface = us[ACM_CTRL_IDX].id;
  527. acm_data_interface_desc.iInterface = us[ACM_DATA_IDX].id;
  528. acm_iad_descriptor.iFunction = us[ACM_IAD_IDX].id;
  529. /* allocate instance-specific interface IDs, and patch descriptors */
  530. status = usb_interface_id(c, f);
  531. if (status < 0)
  532. goto fail;
  533. acm->ctrl_id = status;
  534. acm_iad_descriptor.bFirstInterface = status;
  535. acm_control_interface_desc.bInterfaceNumber = status;
  536. acm_union_desc .bMasterInterface0 = status;
  537. status = usb_interface_id(c, f);
  538. if (status < 0)
  539. goto fail;
  540. acm->data_id = status;
  541. acm_data_interface_desc.bInterfaceNumber = status;
  542. acm_union_desc.bSlaveInterface0 = status;
  543. acm_call_mgmt_descriptor.bDataInterface = status;
  544. status = -ENODEV;
  545. /* allocate instance-specific endpoints */
  546. ep = usb_ep_autoconfig(cdev->gadget, &acm_fs_in_desc);
  547. if (!ep)
  548. goto fail;
  549. acm->port.in = ep;
  550. ep->driver_data = cdev; /* claim */
  551. ep = usb_ep_autoconfig(cdev->gadget, &acm_fs_out_desc);
  552. if (!ep)
  553. goto fail;
  554. acm->port.out = ep;
  555. ep->driver_data = cdev; /* claim */
  556. ep = usb_ep_autoconfig(cdev->gadget, &acm_fs_notify_desc);
  557. if (!ep)
  558. goto fail;
  559. acm->notify = ep;
  560. ep->driver_data = cdev; /* claim */
  561. /* allocate notification */
  562. acm->notify_req = gs_alloc_req(ep,
  563. sizeof(struct usb_cdc_notification) + 2,
  564. GFP_KERNEL);
  565. if (!acm->notify_req)
  566. goto fail;
  567. acm->notify_req->complete = acm_cdc_notify_complete;
  568. acm->notify_req->context = acm;
  569. /* support all relevant hardware speeds... we expect that when
  570. * hardware is dual speed, all bulk-capable endpoints work at
  571. * both speeds
  572. */
  573. acm_hs_in_desc.bEndpointAddress = acm_fs_in_desc.bEndpointAddress;
  574. acm_hs_out_desc.bEndpointAddress = acm_fs_out_desc.bEndpointAddress;
  575. acm_hs_notify_desc.bEndpointAddress =
  576. acm_fs_notify_desc.bEndpointAddress;
  577. acm_ss_in_desc.bEndpointAddress = acm_fs_in_desc.bEndpointAddress;
  578. acm_ss_out_desc.bEndpointAddress = acm_fs_out_desc.bEndpointAddress;
  579. status = usb_assign_descriptors(f, acm_fs_function, acm_hs_function,
  580. acm_ss_function);
  581. if (status)
  582. goto fail;
  583. DBG(cdev, "acm ttyGS%d: %s speed IN/%s OUT/%s NOTIFY/%s\n",
  584. acm->port_num,
  585. gadget_is_superspeed(c->cdev->gadget) ? "super" :
  586. gadget_is_dualspeed(c->cdev->gadget) ? "dual" : "full",
  587. acm->port.in->name, acm->port.out->name,
  588. acm->notify->name);
  589. return 0;
  590. fail:
  591. if (acm->notify_req)
  592. gs_free_req(acm->notify, acm->notify_req);
  593. /* we might as well release our claims on endpoints */
  594. if (acm->notify)
  595. acm->notify->driver_data = NULL;
  596. if (acm->port.out)
  597. acm->port.out->driver_data = NULL;
  598. if (acm->port.in)
  599. acm->port.in->driver_data = NULL;
  600. ERROR(cdev, "%s/%p: can't bind, err %d\n", f->name, f, status);
  601. return status;
  602. }
  603. static struct f_acm *acm_alloc_basic_func(void)
  604. {
  605. struct f_acm *acm;
  606. acm = kzalloc(sizeof(*acm), GFP_KERNEL);
  607. if (!acm)
  608. return NULL;
  609. spin_lock_init(&acm->lock);
  610. acm->port.connect = acm_connect;
  611. acm->port.disconnect = acm_disconnect;
  612. acm->port.send_break = acm_send_break;
  613. acm->port.func.name = "acm";
  614. /* descriptors are per-instance copies */
  615. acm->port.func.bind = acm_bind;
  616. acm->port.func.set_alt = acm_set_alt;
  617. acm->port.func.setup = acm_setup;
  618. acm->port.func.disable = acm_disable;
  619. return acm;
  620. }
  621. #ifdef USB_FACM_INCLUDED
  622. static void
  623. acm_old_unbind(struct usb_configuration *c, struct usb_function *f)
  624. {
  625. struct f_acm *acm = func_to_acm(f);
  626. usb_free_all_descriptors(f);
  627. if (acm->notify_req)
  628. gs_free_req(acm->notify, acm->notify_req);
  629. kfree(acm);
  630. }
  631. /**
  632. * acm_bind_config - add a CDC ACM function to a configuration
  633. * @c: the configuration to support the CDC ACM instance
  634. * @port_num: /dev/ttyGS* port this interface will use
  635. * Context: single threaded during gadget setup
  636. *
  637. * Returns zero on success, else negative errno.
  638. *
  639. */
  640. int acm_bind_config(struct usb_configuration *c, u8 port_num)
  641. {
  642. struct f_acm *acm;
  643. int status;
  644. /* allocate and initialize one new instance */
  645. acm = acm_alloc_basic_func();
  646. if (!acm)
  647. return -ENOMEM;
  648. acm->port_num = port_num;
  649. acm->port.func.unbind = acm_old_unbind;
  650. status = usb_add_function(c, &acm->port.func);
  651. if (status)
  652. kfree(acm);
  653. return status;
  654. }
  655. #else
  656. static void acm_unbind(struct usb_configuration *c, struct usb_function *f)
  657. {
  658. struct f_acm *acm = func_to_acm(f);
  659. acm_string_defs[0].id = 0;
  660. usb_free_all_descriptors(f);
  661. if (acm->notify_req)
  662. gs_free_req(acm->notify, acm->notify_req);
  663. }
  664. static void acm_free_func(struct usb_function *f)
  665. {
  666. struct f_acm *acm = func_to_acm(f);
  667. kfree(acm);
  668. }
  669. static struct usb_function *acm_alloc_func(struct usb_function_instance *fi)
  670. {
  671. struct f_serial_opts *opts;
  672. struct f_acm *acm;
  673. acm = acm_alloc_basic_func();
  674. if (!acm)
  675. return ERR_PTR(-ENOMEM);
  676. opts = container_of(fi, struct f_serial_opts, func_inst);
  677. acm->port_num = opts->port_num;
  678. acm->port.func.unbind = acm_unbind;
  679. acm->port.func.free_func = acm_free_func;
  680. return &acm->port.func;
  681. }
  682. static void acm_free_instance(struct usb_function_instance *fi)
  683. {
  684. struct f_serial_opts *opts;
  685. opts = container_of(fi, struct f_serial_opts, func_inst);
  686. kfree(opts);
  687. }
  688. static struct usb_function_instance *acm_alloc_instance(void)
  689. {
  690. struct f_serial_opts *opts;
  691. opts = kzalloc(sizeof(*opts), GFP_KERNEL);
  692. if (!opts)
  693. return ERR_PTR(-ENOMEM);
  694. opts->func_inst.free_func_inst = acm_free_instance;
  695. return &opts->func_inst;
  696. }
  697. DECLARE_USB_FUNCTION_INIT(acm, acm_alloc_instance, acm_alloc_func);
  698. MODULE_LICENSE("GPL");
  699. #endif