xref: /freebsd/sys/dev/usb/serial/umodem.c (revision b197d4b893974c9eb4d7b38704c6d5c486235d6f)
1 /*	$NetBSD: umodem.c,v 1.45 2002/09/23 05:51:23 simonb Exp $	*/
2 
3 #include <sys/cdefs.h>
4 __FBSDID("$FreeBSD$");
5 
6 /*-
7  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD AND BSD-2-Clause-NetBSD
8  *
9  * Copyright (c) 2003 M. Warner Losh <imp@FreeBSD.org>
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  */
32 
33 /*-
34  * Copyright (c) 1998 The NetBSD Foundation, Inc.
35  * All rights reserved.
36  *
37  * This code is derived from software contributed to The NetBSD Foundation
38  * by Lennart Augustsson (lennart@augustsson.net) at
39  * Carlstedt Research & Technology.
40  *
41  * Redistribution and use in source and binary forms, with or without
42  * modification, are permitted provided that the following conditions
43  * are met:
44  * 1. Redistributions of source code must retain the above copyright
45  *    notice, this list of conditions and the following disclaimer.
46  * 2. Redistributions in binary form must reproduce the above copyright
47  *    notice, this list of conditions and the following disclaimer in the
48  *    documentation and/or other materials provided with the distribution.
49  *
50  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
51  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
52  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
53  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
54  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
55  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
56  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
57  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
58  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
59  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
60  * POSSIBILITY OF SUCH DAMAGE.
61  */
62 
63 /*
64  * Comm Class spec:  http://www.usb.org/developers/devclass_docs/usbccs10.pdf
65  *                   http://www.usb.org/developers/devclass_docs/usbcdc11.pdf
66  *                   http://www.usb.org/developers/devclass_docs/cdc_wmc10.zip
67  */
68 
69 /*
70  * TODO:
71  * - Add error recovery in various places; the big problem is what
72  *   to do in a callback if there is an error.
73  * - Implement a Call Device for modems without multiplexed commands.
74  *
75  */
76 
77 #include <sys/stdint.h>
78 #include <sys/stddef.h>
79 #include <sys/param.h>
80 #include <sys/queue.h>
81 #include <sys/types.h>
82 #include <sys/systm.h>
83 #include <sys/kernel.h>
84 #include <sys/bus.h>
85 #include <sys/module.h>
86 #include <sys/lock.h>
87 #include <sys/mutex.h>
88 #include <sys/condvar.h>
89 #include <sys/sysctl.h>
90 #include <sys/sx.h>
91 #include <sys/unistd.h>
92 #include <sys/callout.h>
93 #include <sys/malloc.h>
94 #include <sys/priv.h>
95 
96 #include <dev/usb/usb.h>
97 #include <dev/usb/usbdi.h>
98 #include <dev/usb/usbdi_util.h>
99 #include <dev/usb/usbhid.h>
100 #include <dev/usb/usb_cdc.h>
101 #include "usbdevs.h"
102 #include "usb_if.h"
103 
104 #include <dev/usb/usb_ioctl.h>
105 
106 #define	USB_DEBUG_VAR umodem_debug
107 #include <dev/usb/usb_debug.h>
108 #include <dev/usb/usb_process.h>
109 #include <dev/usb/quirk/usb_quirk.h>
110 
111 #include <dev/usb/serial/usb_serial.h>
112 
113 #ifdef USB_DEBUG
114 static int umodem_debug = 0;
115 
116 static SYSCTL_NODE(_hw_usb, OID_AUTO, umodem, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
117     "USB umodem");
118 SYSCTL_INT(_hw_usb_umodem, OID_AUTO, debug, CTLFLAG_RWTUN,
119     &umodem_debug, 0, "Debug level");
120 #endif
121 
122 static const STRUCT_USB_DUAL_ID umodem_dual_devs[] = {
123 	/* Generic Modem class match */
124 	{USB_IFACE_CLASS(UICLASS_CDC),
125 		USB_IFACE_SUBCLASS(UISUBCLASS_ABSTRACT_CONTROL_MODEL),
126 		USB_IFACE_PROTOCOL(UIPROTO_CDC_AT)},
127 	{USB_IFACE_CLASS(UICLASS_CDC),
128 		USB_IFACE_SUBCLASS(UISUBCLASS_ABSTRACT_CONTROL_MODEL),
129 		USB_IFACE_PROTOCOL(UIPROTO_CDC_NONE)},
130 };
131 
132 static const STRUCT_USB_HOST_ID umodem_host_devs[] = {
133 	/* Huawei Modem class match */
134 	{USB_VENDOR(USB_VENDOR_HUAWEI), USB_IFACE_CLASS(UICLASS_VENDOR),
135 		USB_IFACE_SUBCLASS(0x02), USB_IFACE_PROTOCOL(0x01)},
136 	{USB_VENDOR(USB_VENDOR_HUAWEI), USB_IFACE_CLASS(UICLASS_VENDOR),
137 		USB_IFACE_SUBCLASS(0x02), USB_IFACE_PROTOCOL(0x02)},
138 	{USB_VENDOR(USB_VENDOR_HUAWEI), USB_IFACE_CLASS(UICLASS_VENDOR),
139 		USB_IFACE_SUBCLASS(0x02), USB_IFACE_PROTOCOL(0x10)},
140 	{USB_VENDOR(USB_VENDOR_HUAWEI), USB_IFACE_CLASS(UICLASS_VENDOR),
141 		USB_IFACE_SUBCLASS(0x02), USB_IFACE_PROTOCOL(0x12)},
142 	{USB_VENDOR(USB_VENDOR_HUAWEI), USB_IFACE_CLASS(UICLASS_VENDOR),
143 		USB_IFACE_SUBCLASS(0x02), USB_IFACE_PROTOCOL(0x61)},
144 	{USB_VENDOR(USB_VENDOR_HUAWEI), USB_IFACE_CLASS(UICLASS_VENDOR),
145 		USB_IFACE_SUBCLASS(0x02), USB_IFACE_PROTOCOL(0x62)},
146 	{USB_VENDOR(USB_VENDOR_HUAWEI),USB_IFACE_CLASS(UICLASS_CDC),
147 		USB_IFACE_SUBCLASS(UISUBCLASS_ABSTRACT_CONTROL_MODEL),
148 		USB_IFACE_PROTOCOL(0xFF)},
149 	{USB_VENDOR(USB_VENDOR_HUAWEI), USB_IFACE_CLASS(0xFF),
150 		USB_IFACE_SUBCLASS(0xF), USB_IFACE_PROTOCOL(0xFF)},
151 	/* Kyocera AH-K3001V */
152 	{USB_VPI(USB_VENDOR_KYOCERA, USB_PRODUCT_KYOCERA_AHK3001V, 1)},
153 	{USB_VPI(USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_MC5720, 1)},
154 	{USB_VPI(USB_VENDOR_CURITEL, USB_PRODUCT_CURITEL_PC5740, 1)},
155 	/* Winbond */
156 	{USB_VENDOR(USB_VENDOR_WINBOND), USB_PRODUCT(USB_PRODUCT_WINBOND_CDC)},
157 };
158 
159 /*
160  * As speeds for umodem devices increase, these numbers will need to
161  * be increased. They should be good for G3 speeds and below.
162  *
163  * TODO: The TTY buffers should be increased!
164  */
165 #define	UMODEM_BUF_SIZE 1024
166 
167 enum {
168 	UMODEM_BULK_WR,
169 	UMODEM_BULK_RD,
170 	UMODEM_INTR_WR,
171 	UMODEM_INTR_RD,
172 	UMODEM_N_TRANSFER,
173 };
174 
175 #define	UMODEM_MODVER			1	/* module version */
176 
177 struct umodem_softc {
178 	struct ucom_super_softc sc_super_ucom;
179 	struct ucom_softc sc_ucom;
180 
181 	struct usb_xfer *sc_xfer[UMODEM_N_TRANSFER];
182 	struct usb_device *sc_udev;
183 	struct mtx sc_mtx;
184 
185 	uint16_t sc_line;
186 
187 	uint8_t	sc_lsr;			/* local status register */
188 	uint8_t	sc_msr;			/* modem status register */
189 	uint8_t	sc_ctrl_iface_no;
190 	uint8_t	sc_data_iface_no;
191 	uint8_t sc_iface_index[2];
192 	uint8_t	sc_cm_over_data;
193 	uint8_t	sc_cm_cap;		/* CM capabilities */
194 	uint8_t	sc_acm_cap;		/* ACM capabilities */
195 	uint8_t	sc_line_coding[32];	/* used in USB device mode */
196 	uint8_t	sc_abstract_state[32];	/* used in USB device mode */
197 };
198 
199 static device_probe_t umodem_probe;
200 static device_attach_t umodem_attach;
201 static device_detach_t umodem_detach;
202 static usb_handle_request_t umodem_handle_request;
203 
204 static void umodem_free_softc(struct umodem_softc *);
205 
206 static usb_callback_t umodem_intr_read_callback;
207 static usb_callback_t umodem_intr_write_callback;
208 static usb_callback_t umodem_write_callback;
209 static usb_callback_t umodem_read_callback;
210 
211 static void	umodem_free(struct ucom_softc *);
212 static void	umodem_start_read(struct ucom_softc *);
213 static void	umodem_stop_read(struct ucom_softc *);
214 static void	umodem_start_write(struct ucom_softc *);
215 static void	umodem_stop_write(struct ucom_softc *);
216 static void	umodem_get_caps(struct usb_attach_arg *, uint8_t *, uint8_t *);
217 static void	umodem_cfg_get_status(struct ucom_softc *, uint8_t *,
218 		    uint8_t *);
219 static int	umodem_pre_param(struct ucom_softc *, struct termios *);
220 static void	umodem_cfg_param(struct ucom_softc *, struct termios *);
221 static void	umodem_cfg_open(struct ucom_softc *);
222 static int	umodem_ioctl(struct ucom_softc *, uint32_t, caddr_t, int,
223 		    struct thread *);
224 static void	umodem_cfg_set_dtr(struct ucom_softc *, uint8_t);
225 static void	umodem_cfg_set_rts(struct ucom_softc *, uint8_t);
226 static void	umodem_cfg_set_break(struct ucom_softc *, uint8_t);
227 static void	*umodem_get_desc(struct usb_attach_arg *, uint8_t, uint8_t);
228 static usb_error_t umodem_set_comm_feature(struct usb_device *, uint8_t,
229 		    uint16_t, uint16_t);
230 static void	umodem_poll(struct ucom_softc *ucom);
231 static void	umodem_find_data_iface(struct usb_attach_arg *uaa,
232 		    uint8_t, uint8_t *, uint8_t *);
233 
234 static const struct usb_config umodem_config[UMODEM_N_TRANSFER] = {
235 	[UMODEM_BULK_WR] = {
236 		.type = UE_BULK,
237 		.endpoint = UE_ADDR_ANY,
238 		.direction = UE_DIR_TX,
239 		.if_index = 0,
240 		.bufsize = UMODEM_BUF_SIZE,
241 		.flags = {.pipe_bof = 1,.force_short_xfer = 1,},
242 		.callback = &umodem_write_callback,
243 		.usb_mode = USB_MODE_DUAL,
244 	},
245 
246 	[UMODEM_BULK_RD] = {
247 		.type = UE_BULK,
248 		.endpoint = UE_ADDR_ANY,
249 		.direction = UE_DIR_RX,
250 		.if_index = 0,
251 		.bufsize = UMODEM_BUF_SIZE,
252 		.flags = {.pipe_bof = 1,.short_xfer_ok = 1,},
253 		.callback = &umodem_read_callback,
254 		.usb_mode = USB_MODE_DUAL,
255 	},
256 
257 	[UMODEM_INTR_WR] = {
258 		.type = UE_INTERRUPT,
259 		.endpoint = UE_ADDR_ANY,
260 		.direction = UE_DIR_TX,
261 		.if_index = 1,
262 		.flags = {.pipe_bof = 1,.short_xfer_ok = 1,.no_pipe_ok = 1,},
263 		.bufsize = 0,	/* use wMaxPacketSize */
264 		.callback = &umodem_intr_write_callback,
265 		.usb_mode = USB_MODE_DEVICE,
266 	},
267 
268 	[UMODEM_INTR_RD] = {
269 		.type = UE_INTERRUPT,
270 		.endpoint = UE_ADDR_ANY,
271 		.direction = UE_DIR_RX,
272 		.if_index = 1,
273 		.flags = {.pipe_bof = 1,.short_xfer_ok = 1,.no_pipe_ok = 1,},
274 		.bufsize = 0,	/* use wMaxPacketSize */
275 		.callback = &umodem_intr_read_callback,
276 		.usb_mode = USB_MODE_HOST,
277 	},
278 };
279 
280 static const struct ucom_callback umodem_callback = {
281 	.ucom_cfg_get_status = &umodem_cfg_get_status,
282 	.ucom_cfg_set_dtr = &umodem_cfg_set_dtr,
283 	.ucom_cfg_set_rts = &umodem_cfg_set_rts,
284 	.ucom_cfg_set_break = &umodem_cfg_set_break,
285 	.ucom_cfg_param = &umodem_cfg_param,
286 	.ucom_pre_param = &umodem_pre_param,
287 	.ucom_cfg_open = &umodem_cfg_open,
288 	.ucom_ioctl = &umodem_ioctl,
289 	.ucom_start_read = &umodem_start_read,
290 	.ucom_stop_read = &umodem_stop_read,
291 	.ucom_start_write = &umodem_start_write,
292 	.ucom_stop_write = &umodem_stop_write,
293 	.ucom_poll = &umodem_poll,
294 	.ucom_free = &umodem_free,
295 };
296 
297 static device_method_t umodem_methods[] = {
298 	/* USB interface */
299 	DEVMETHOD(usb_handle_request, umodem_handle_request),
300 
301 	/* Device interface */
302 	DEVMETHOD(device_probe, umodem_probe),
303 	DEVMETHOD(device_attach, umodem_attach),
304 	DEVMETHOD(device_detach, umodem_detach),
305 	DEVMETHOD_END
306 };
307 
308 static driver_t umodem_driver = {
309 	.name = "umodem",
310 	.methods = umodem_methods,
311 	.size = sizeof(struct umodem_softc),
312 };
313 
314 DRIVER_MODULE(umodem, uhub, umodem_driver, NULL, NULL);
315 MODULE_DEPEND(umodem, ucom, 1, 1, 1);
316 MODULE_DEPEND(umodem, usb, 1, 1, 1);
317 MODULE_VERSION(umodem, UMODEM_MODVER);
318 USB_PNP_DUAL_INFO(umodem_dual_devs);
319 USB_PNP_HOST_INFO(umodem_host_devs);
320 
321 static int
322 umodem_probe(device_t dev)
323 {
324 	struct usb_attach_arg *uaa = device_get_ivars(dev);
325 	int error;
326 
327 	DPRINTFN(11, "\n");
328 
329 	error = usbd_lookup_id_by_uaa(umodem_host_devs,
330 	    sizeof(umodem_host_devs), uaa);
331 	if (error) {
332 		error = usbd_lookup_id_by_uaa(umodem_dual_devs,
333 		    sizeof(umodem_dual_devs), uaa);
334 		if (error)
335 			return (error);
336 	}
337 	return (BUS_PROBE_GENERIC);
338 }
339 
340 static int
341 umodem_attach(device_t dev)
342 {
343 	struct usb_attach_arg *uaa = device_get_ivars(dev);
344 	struct umodem_softc *sc = device_get_softc(dev);
345 	struct usb_cdc_cm_descriptor *cmd;
346 	struct usb_cdc_union_descriptor *cud;
347 	uint8_t i;
348 	int error;
349 
350 	device_set_usb_desc(dev);
351 	mtx_init(&sc->sc_mtx, "umodem", NULL, MTX_DEF);
352 	ucom_ref(&sc->sc_super_ucom);
353 
354 	sc->sc_ctrl_iface_no = uaa->info.bIfaceNum;
355 	sc->sc_iface_index[1] = uaa->info.bIfaceIndex;
356 	sc->sc_udev = uaa->device;
357 
358 	umodem_get_caps(uaa, &sc->sc_cm_cap, &sc->sc_acm_cap);
359 
360 	/* get the data interface number */
361 
362 	cmd = umodem_get_desc(uaa, UDESC_CS_INTERFACE, UDESCSUB_CDC_CM);
363 
364 	if ((cmd == NULL) || (cmd->bLength < sizeof(*cmd))) {
365 		cud = usbd_find_descriptor(uaa->device, NULL,
366 		    uaa->info.bIfaceIndex, UDESC_CS_INTERFACE,
367 		    0xFF, UDESCSUB_CDC_UNION, 0xFF);
368 
369 		if ((cud == NULL) || (cud->bLength < sizeof(*cud))) {
370 			DPRINTF("Missing descriptor. "
371 			    "Assuming data interface is next.\n");
372 			if (sc->sc_ctrl_iface_no == 0xFF) {
373 				goto detach;
374 			} else {
375 				uint8_t class_match = 0;
376 
377 				/* set default interface number */
378 				sc->sc_data_iface_no = 0xFF;
379 
380 				/* try to find the data interface backwards */
381 				umodem_find_data_iface(uaa,
382 				    uaa->info.bIfaceIndex - 1,
383 				    &sc->sc_data_iface_no, &class_match);
384 
385 				/* try to find the data interface forwards */
386 				umodem_find_data_iface(uaa,
387 				    uaa->info.bIfaceIndex + 1,
388 				    &sc->sc_data_iface_no, &class_match);
389 
390 				/* check if nothing was found */
391 				if (sc->sc_data_iface_no == 0xFF)
392 					goto detach;
393 			}
394 		} else {
395 			sc->sc_data_iface_no = cud->bSlaveInterface[0];
396 		}
397 	} else {
398 		sc->sc_data_iface_no = cmd->bDataInterface;
399 	}
400 
401 	device_printf(dev, "data interface %d, has %sCM over "
402 	    "data, has %sbreak\n",
403 	    sc->sc_data_iface_no,
404 	    sc->sc_cm_cap & USB_CDC_CM_OVER_DATA ? "" : "no ",
405 	    sc->sc_acm_cap & USB_CDC_ACM_HAS_BREAK ? "" : "no ");
406 
407 	/* get the data interface too */
408 
409 	for (i = 0;; i++) {
410 		struct usb_interface *iface;
411 		struct usb_interface_descriptor *id;
412 
413 		iface = usbd_get_iface(uaa->device, i);
414 
415 		if (iface) {
416 			id = usbd_get_interface_descriptor(iface);
417 
418 			if (id && (id->bInterfaceNumber == sc->sc_data_iface_no)) {
419 				sc->sc_iface_index[0] = i;
420 				usbd_set_parent_iface(uaa->device, i, uaa->info.bIfaceIndex);
421 				break;
422 			}
423 		} else {
424 			device_printf(dev, "no data interface\n");
425 			goto detach;
426 		}
427 	}
428 
429 	if (usb_test_quirk(uaa, UQ_ASSUME_CM_OVER_DATA)) {
430 		sc->sc_cm_over_data = 1;
431 	} else {
432 		if (sc->sc_cm_cap & USB_CDC_CM_OVER_DATA) {
433 			if (sc->sc_acm_cap & USB_CDC_ACM_HAS_FEATURE) {
434 				error = umodem_set_comm_feature
435 				(uaa->device, sc->sc_ctrl_iface_no,
436 				 UCDC_ABSTRACT_STATE, UCDC_DATA_MULTIPLEXED);
437 
438 				/* ignore any errors */
439 			}
440 			sc->sc_cm_over_data = 1;
441 		}
442 	}
443 	error = usbd_transfer_setup(uaa->device,
444 	    sc->sc_iface_index, sc->sc_xfer,
445 	    umodem_config, UMODEM_N_TRANSFER,
446 	    sc, &sc->sc_mtx);
447 	if (error) {
448 		device_printf(dev, "Can't setup transfer\n");
449 		goto detach;
450 	}
451 
452 	ucom_set_usb_mode(&sc->sc_super_ucom, uaa->usb_mode);
453 
454 	error = ucom_attach(&sc->sc_super_ucom, &sc->sc_ucom, 1, sc,
455 	    &umodem_callback, &sc->sc_mtx);
456 	if (error) {
457 		device_printf(dev, "Can't attach com\n");
458 		goto detach;
459 	}
460 	ucom_set_pnpinfo_usb(&sc->sc_super_ucom, dev);
461 
462 	return (0);
463 
464 detach:
465 	umodem_detach(dev);
466 	return (ENXIO);
467 }
468 
469 static void
470 umodem_find_data_iface(struct usb_attach_arg *uaa,
471     uint8_t iface_index, uint8_t *p_data_no, uint8_t *p_match_class)
472 {
473 	struct usb_interface_descriptor *id;
474 	struct usb_interface *iface;
475 
476 	iface = usbd_get_iface(uaa->device, iface_index);
477 
478 	/* check for end of interfaces */
479 	if (iface == NULL)
480 		return;
481 
482 	id = usbd_get_interface_descriptor(iface);
483 
484 	/* check for non-matching interface class */
485 	if (id->bInterfaceClass != UICLASS_CDC_DATA ||
486 	    id->bInterfaceSubClass != UISUBCLASS_DATA) {
487 		/* if we got a class match then return */
488 		if (*p_match_class)
489 			return;
490 	} else {
491 		*p_match_class = 1;
492 	}
493 
494 	DPRINTFN(11, "Match at index %u\n", iface_index);
495 
496 	*p_data_no = id->bInterfaceNumber;
497 }
498 
499 static void
500 umodem_start_read(struct ucom_softc *ucom)
501 {
502 	struct umodem_softc *sc = ucom->sc_parent;
503 
504 	/* start interrupt endpoint, if any */
505 	usbd_transfer_start(sc->sc_xfer[UMODEM_INTR_RD]);
506 
507 	/* start read endpoint */
508 	usbd_transfer_start(sc->sc_xfer[UMODEM_BULK_RD]);
509 }
510 
511 static void
512 umodem_stop_read(struct ucom_softc *ucom)
513 {
514 	struct umodem_softc *sc = ucom->sc_parent;
515 
516 	/* stop interrupt endpoint, if any */
517 	usbd_transfer_stop(sc->sc_xfer[UMODEM_INTR_RD]);
518 
519 	/* stop read endpoint */
520 	usbd_transfer_stop(sc->sc_xfer[UMODEM_BULK_RD]);
521 }
522 
523 static void
524 umodem_start_write(struct ucom_softc *ucom)
525 {
526 	struct umodem_softc *sc = ucom->sc_parent;
527 
528 	usbd_transfer_start(sc->sc_xfer[UMODEM_INTR_WR]);
529 	usbd_transfer_start(sc->sc_xfer[UMODEM_BULK_WR]);
530 }
531 
532 static void
533 umodem_stop_write(struct ucom_softc *ucom)
534 {
535 	struct umodem_softc *sc = ucom->sc_parent;
536 
537 	usbd_transfer_stop(sc->sc_xfer[UMODEM_INTR_WR]);
538 	usbd_transfer_stop(sc->sc_xfer[UMODEM_BULK_WR]);
539 }
540 
541 static void
542 umodem_get_caps(struct usb_attach_arg *uaa, uint8_t *cm, uint8_t *acm)
543 {
544 	struct usb_cdc_cm_descriptor *cmd;
545 	struct usb_cdc_acm_descriptor *cad;
546 
547 	cmd = umodem_get_desc(uaa, UDESC_CS_INTERFACE, UDESCSUB_CDC_CM);
548 	if ((cmd == NULL) || (cmd->bLength < sizeof(*cmd))) {
549 		DPRINTF("no CM desc (faking one)\n");
550 		*cm = USB_CDC_CM_DOES_CM | USB_CDC_CM_OVER_DATA;
551 	} else
552 		*cm = cmd->bmCapabilities;
553 
554 	cad = umodem_get_desc(uaa, UDESC_CS_INTERFACE, UDESCSUB_CDC_ACM);
555 	if ((cad == NULL) || (cad->bLength < sizeof(*cad))) {
556 		DPRINTF("no ACM desc\n");
557 		*acm = 0;
558 	} else
559 		*acm = cad->bmCapabilities;
560 }
561 
562 static void
563 umodem_cfg_get_status(struct ucom_softc *ucom, uint8_t *lsr, uint8_t *msr)
564 {
565 	struct umodem_softc *sc = ucom->sc_parent;
566 
567 	DPRINTF("\n");
568 
569 	/* XXX Note: sc_lsr is always zero */
570 	*lsr = sc->sc_lsr;
571 	*msr = sc->sc_msr;
572 }
573 
574 static int
575 umodem_pre_param(struct ucom_softc *ucom, struct termios *t)
576 {
577 	return (0);			/* we accept anything */
578 }
579 
580 static void
581 umodem_cfg_param(struct ucom_softc *ucom, struct termios *t)
582 {
583 	struct umodem_softc *sc = ucom->sc_parent;
584 	struct usb_cdc_line_state ls;
585 	struct usb_device_request req;
586 
587 	DPRINTF("sc=%p\n", sc);
588 
589 	memset(&ls, 0, sizeof(ls));
590 
591 	USETDW(ls.dwDTERate, t->c_ospeed);
592 
593 	ls.bCharFormat = (t->c_cflag & CSTOPB) ?
594 	    UCDC_STOP_BIT_2 : UCDC_STOP_BIT_1;
595 
596 	ls.bParityType = (t->c_cflag & PARENB) ?
597 	    ((t->c_cflag & PARODD) ?
598 	    UCDC_PARITY_ODD : UCDC_PARITY_EVEN) : UCDC_PARITY_NONE;
599 
600 	switch (t->c_cflag & CSIZE) {
601 	case CS5:
602 		ls.bDataBits = 5;
603 		break;
604 	case CS6:
605 		ls.bDataBits = 6;
606 		break;
607 	case CS7:
608 		ls.bDataBits = 7;
609 		break;
610 	case CS8:
611 		ls.bDataBits = 8;
612 		break;
613 	}
614 
615 	DPRINTF("rate=%d fmt=%d parity=%d bits=%d\n",
616 	    UGETDW(ls.dwDTERate), ls.bCharFormat,
617 	    ls.bParityType, ls.bDataBits);
618 
619 	req.bmRequestType = UT_WRITE_CLASS_INTERFACE;
620 	req.bRequest = UCDC_SET_LINE_CODING;
621 	USETW(req.wValue, 0);
622 	req.wIndex[0] = sc->sc_ctrl_iface_no;
623 	req.wIndex[1] = 0;
624 	USETW(req.wLength, sizeof(ls));
625 
626 	ucom_cfg_do_request(sc->sc_udev, &sc->sc_ucom,
627 	    &req, &ls, 0, 1000);
628 }
629 
630 static void
631 umodem_cfg_open(struct ucom_softc *ucom)
632 {
633 	struct umodem_softc *sc = ucom->sc_parent;
634 
635 	/* clear stall, if in USB host mode */
636 	if ((sc->sc_super_ucom.sc_flag & UCOM_FLAG_DEVICE_MODE) == 0) {
637 		usbd_xfer_set_stall(sc->sc_xfer[UMODEM_BULK_WR]);
638 		usbd_xfer_set_stall(sc->sc_xfer[UMODEM_BULK_RD]);
639 	}
640 }
641 
642 static int
643 umodem_ioctl(struct ucom_softc *ucom, uint32_t cmd, caddr_t data,
644     int flag, struct thread *td)
645 {
646 	struct umodem_softc *sc = ucom->sc_parent;
647 	int error = 0;
648 
649 	DPRINTF("cmd=0x%08x\n", cmd);
650 
651 	switch (cmd) {
652 	case USB_GET_CM_OVER_DATA:
653 		*(int *)data = sc->sc_cm_over_data;
654 		break;
655 
656 	case USB_SET_CM_OVER_DATA:
657 		if (*(int *)data != sc->sc_cm_over_data) {
658 			/* XXX change it */
659 		}
660 		break;
661 
662 	default:
663 		DPRINTF("unknown\n");
664 		error = ENOIOCTL;
665 		break;
666 	}
667 
668 	return (error);
669 }
670 
671 static void
672 umodem_cfg_set_dtr(struct ucom_softc *ucom, uint8_t onoff)
673 {
674 	struct umodem_softc *sc = ucom->sc_parent;
675 	struct usb_device_request req;
676 
677 	DPRINTF("onoff=%d\n", onoff);
678 
679 	if (onoff)
680 		sc->sc_line |= UCDC_LINE_DTR;
681 	else
682 		sc->sc_line &= ~UCDC_LINE_DTR;
683 
684 	req.bmRequestType = UT_WRITE_CLASS_INTERFACE;
685 	req.bRequest = UCDC_SET_CONTROL_LINE_STATE;
686 	USETW(req.wValue, sc->sc_line);
687 	req.wIndex[0] = sc->sc_ctrl_iface_no;
688 	req.wIndex[1] = 0;
689 	USETW(req.wLength, 0);
690 
691 	ucom_cfg_do_request(sc->sc_udev, &sc->sc_ucom,
692 	    &req, NULL, 0, 1000);
693 }
694 
695 static void
696 umodem_cfg_set_rts(struct ucom_softc *ucom, uint8_t onoff)
697 {
698 	struct umodem_softc *sc = ucom->sc_parent;
699 	struct usb_device_request req;
700 
701 	DPRINTF("onoff=%d\n", onoff);
702 
703 	if (onoff)
704 		sc->sc_line |= UCDC_LINE_RTS;
705 	else
706 		sc->sc_line &= ~UCDC_LINE_RTS;
707 
708 	req.bmRequestType = UT_WRITE_CLASS_INTERFACE;
709 	req.bRequest = UCDC_SET_CONTROL_LINE_STATE;
710 	USETW(req.wValue, sc->sc_line);
711 	req.wIndex[0] = sc->sc_ctrl_iface_no;
712 	req.wIndex[1] = 0;
713 	USETW(req.wLength, 0);
714 
715 	ucom_cfg_do_request(sc->sc_udev, &sc->sc_ucom,
716 	    &req, NULL, 0, 1000);
717 }
718 
719 static void
720 umodem_cfg_set_break(struct ucom_softc *ucom, uint8_t onoff)
721 {
722 	struct umodem_softc *sc = ucom->sc_parent;
723 	struct usb_device_request req;
724 	uint16_t temp;
725 
726 	DPRINTF("onoff=%d\n", onoff);
727 
728 	if (sc->sc_acm_cap & USB_CDC_ACM_HAS_BREAK) {
729 		temp = onoff ? UCDC_BREAK_ON : UCDC_BREAK_OFF;
730 
731 		req.bmRequestType = UT_WRITE_CLASS_INTERFACE;
732 		req.bRequest = UCDC_SEND_BREAK;
733 		USETW(req.wValue, temp);
734 		req.wIndex[0] = sc->sc_ctrl_iface_no;
735 		req.wIndex[1] = 0;
736 		USETW(req.wLength, 0);
737 
738 		ucom_cfg_do_request(sc->sc_udev, &sc->sc_ucom,
739 		    &req, NULL, 0, 1000);
740 	}
741 }
742 
743 static void
744 umodem_intr_write_callback(struct usb_xfer *xfer, usb_error_t error)
745 {
746 	int actlen;
747 
748 	usbd_xfer_status(xfer, &actlen, NULL, NULL, NULL);
749 
750 	switch (USB_GET_STATE(xfer)) {
751 	case USB_ST_TRANSFERRED:
752 
753 		DPRINTF("Transferred %d bytes\n", actlen);
754 
755 		/* FALLTHROUGH */
756 	case USB_ST_SETUP:
757 tr_setup:
758 		break;
759 
760 	default:			/* Error */
761 		if (error != USB_ERR_CANCELLED) {
762 			/* start clear stall */
763 			usbd_xfer_set_stall(xfer);
764 			goto tr_setup;
765 		}
766 		break;
767 	}
768 }
769 
770 static void
771 umodem_intr_read_callback(struct usb_xfer *xfer, usb_error_t error)
772 {
773 	struct usb_cdc_notification pkt;
774 	struct umodem_softc *sc = usbd_xfer_softc(xfer);
775 	struct usb_page_cache *pc;
776 	uint16_t wLen;
777 	int actlen;
778 
779 	usbd_xfer_status(xfer, &actlen, NULL, NULL, NULL);
780 
781 	switch (USB_GET_STATE(xfer)) {
782 	case USB_ST_TRANSFERRED:
783 
784 		if (actlen < 8) {
785 			DPRINTF("received short packet, "
786 			    "%d bytes\n", actlen);
787 			goto tr_setup;
788 		}
789 		if (actlen > (int)sizeof(pkt)) {
790 			DPRINTF("truncating message\n");
791 			actlen = sizeof(pkt);
792 		}
793 		pc = usbd_xfer_get_frame(xfer, 0);
794 		usbd_copy_out(pc, 0, &pkt, actlen);
795 
796 		actlen -= 8;
797 
798 		wLen = UGETW(pkt.wLength);
799 		if (actlen > wLen) {
800 			actlen = wLen;
801 		}
802 		if (pkt.bmRequestType != UCDC_NOTIFICATION) {
803 			DPRINTF("unknown message type, "
804 			    "0x%02x, on notify pipe!\n",
805 			    pkt.bmRequestType);
806 			goto tr_setup;
807 		}
808 		switch (pkt.bNotification) {
809 		case UCDC_N_SERIAL_STATE:
810 			/*
811 			 * Set the serial state in ucom driver based on
812 			 * the bits from the notify message
813 			 */
814 			if (actlen < 2) {
815 				DPRINTF("invalid notification "
816 				    "length, %d bytes!\n", actlen);
817 				break;
818 			}
819 			DPRINTF("notify bytes = %02x%02x\n",
820 			    pkt.data[0],
821 			    pkt.data[1]);
822 
823 			/* Currently, lsr is always zero. */
824 			sc->sc_lsr = 0;
825 			sc->sc_msr = 0;
826 
827 			if (pkt.data[0] & UCDC_N_SERIAL_RI) {
828 				sc->sc_msr |= SER_RI;
829 			}
830 			if (pkt.data[0] & UCDC_N_SERIAL_DSR) {
831 				sc->sc_msr |= SER_DSR;
832 			}
833 			if (pkt.data[0] & UCDC_N_SERIAL_DCD) {
834 				sc->sc_msr |= SER_DCD;
835 			}
836 			ucom_status_change(&sc->sc_ucom);
837 			break;
838 
839 		default:
840 			DPRINTF("unknown notify message: 0x%02x\n",
841 			    pkt.bNotification);
842 			break;
843 		}
844 
845 	case USB_ST_SETUP:
846 tr_setup:
847 		usbd_xfer_set_frame_len(xfer, 0, usbd_xfer_max_len(xfer));
848 		usbd_transfer_submit(xfer);
849 		return;
850 
851 	default:			/* Error */
852 		if (error != USB_ERR_CANCELLED) {
853 			/* try to clear stall first */
854 			usbd_xfer_set_stall(xfer);
855 			goto tr_setup;
856 		}
857 		return;
858 	}
859 }
860 
861 static void
862 umodem_write_callback(struct usb_xfer *xfer, usb_error_t error)
863 {
864 	struct umodem_softc *sc = usbd_xfer_softc(xfer);
865 	struct usb_page_cache *pc;
866 	uint32_t actlen;
867 
868 	switch (USB_GET_STATE(xfer)) {
869 	case USB_ST_SETUP:
870 	case USB_ST_TRANSFERRED:
871 tr_setup:
872 		pc = usbd_xfer_get_frame(xfer, 0);
873 		if (ucom_get_data(&sc->sc_ucom, pc, 0,
874 		    UMODEM_BUF_SIZE, &actlen)) {
875 			usbd_xfer_set_frame_len(xfer, 0, actlen);
876 			usbd_transfer_submit(xfer);
877 		}
878 		return;
879 
880 	default:			/* Error */
881 		if (error != USB_ERR_CANCELLED) {
882 			/* try to clear stall first */
883 			usbd_xfer_set_stall(xfer);
884 			goto tr_setup;
885 		}
886 		return;
887 	}
888 }
889 
890 static void
891 umodem_read_callback(struct usb_xfer *xfer, usb_error_t error)
892 {
893 	struct umodem_softc *sc = usbd_xfer_softc(xfer);
894 	struct usb_page_cache *pc;
895 	int actlen;
896 
897 	usbd_xfer_status(xfer, &actlen, NULL, NULL, NULL);
898 
899 	switch (USB_GET_STATE(xfer)) {
900 	case USB_ST_TRANSFERRED:
901 
902 		DPRINTF("actlen=%d\n", actlen);
903 
904 		pc = usbd_xfer_get_frame(xfer, 0);
905 		ucom_put_data(&sc->sc_ucom, pc, 0, actlen);
906 
907 	case USB_ST_SETUP:
908 tr_setup:
909 		usbd_xfer_set_frame_len(xfer, 0, usbd_xfer_max_len(xfer));
910 		usbd_transfer_submit(xfer);
911 		return;
912 
913 	default:			/* Error */
914 		if (error != USB_ERR_CANCELLED) {
915 			/* try to clear stall first */
916 			usbd_xfer_set_stall(xfer);
917 			goto tr_setup;
918 		}
919 		return;
920 	}
921 }
922 
923 static void *
924 umodem_get_desc(struct usb_attach_arg *uaa, uint8_t type, uint8_t subtype)
925 {
926 	return (usbd_find_descriptor(uaa->device, NULL, uaa->info.bIfaceIndex,
927 	    type, 0xFF, subtype, 0xFF));
928 }
929 
930 static usb_error_t
931 umodem_set_comm_feature(struct usb_device *udev, uint8_t iface_no,
932     uint16_t feature, uint16_t state)
933 {
934 	struct usb_device_request req;
935 	struct usb_cdc_abstract_state ast;
936 
937 	DPRINTF("feature=%d state=%d\n",
938 	    feature, state);
939 
940 	req.bmRequestType = UT_WRITE_CLASS_INTERFACE;
941 	req.bRequest = UCDC_SET_COMM_FEATURE;
942 	USETW(req.wValue, feature);
943 	req.wIndex[0] = iface_no;
944 	req.wIndex[1] = 0;
945 	USETW(req.wLength, UCDC_ABSTRACT_STATE_LENGTH);
946 	USETW(ast.wState, state);
947 
948 	return (usbd_do_request(udev, NULL, &req, &ast));
949 }
950 
951 static int
952 umodem_detach(device_t dev)
953 {
954 	struct umodem_softc *sc = device_get_softc(dev);
955 
956 	DPRINTF("sc=%p\n", sc);
957 
958 	ucom_detach(&sc->sc_super_ucom, &sc->sc_ucom);
959 	usbd_transfer_unsetup(sc->sc_xfer, UMODEM_N_TRANSFER);
960 
961 	device_claim_softc(dev);
962 
963 	umodem_free_softc(sc);
964 
965 	return (0);
966 }
967 
968 UCOM_UNLOAD_DRAIN(umodem);
969 
970 static void
971 umodem_free_softc(struct umodem_softc *sc)
972 {
973 	if (ucom_unref(&sc->sc_super_ucom)) {
974 		mtx_destroy(&sc->sc_mtx);
975 		device_free_softc(sc);
976 	}
977 }
978 
979 static void
980 umodem_free(struct ucom_softc *ucom)
981 {
982 	umodem_free_softc(ucom->sc_parent);
983 }
984 
985 static void
986 umodem_poll(struct ucom_softc *ucom)
987 {
988 	struct umodem_softc *sc = ucom->sc_parent;
989 	usbd_transfer_poll(sc->sc_xfer, UMODEM_N_TRANSFER);
990 }
991 
992 static int
993 umodem_handle_request(device_t dev,
994     const void *preq, void **pptr, uint16_t *plen,
995     uint16_t offset, uint8_t *pstate)
996 {
997 	struct umodem_softc *sc = device_get_softc(dev);
998 	const struct usb_device_request *req = preq;
999 	uint8_t is_complete = *pstate;
1000 
1001 	DPRINTF("sc=%p\n", sc);
1002 
1003 	if (!is_complete) {
1004 		if ((req->bmRequestType == UT_WRITE_CLASS_INTERFACE) &&
1005 		    (req->bRequest == UCDC_SET_LINE_CODING) &&
1006 		    (req->wIndex[0] == sc->sc_ctrl_iface_no) &&
1007 		    (req->wIndex[1] == 0x00) &&
1008 		    (req->wValue[0] == 0x00) &&
1009 		    (req->wValue[1] == 0x00)) {
1010 			if (offset == 0) {
1011 				*plen = sizeof(sc->sc_line_coding);
1012 				*pptr = &sc->sc_line_coding;
1013 			} else {
1014 				*plen = 0;
1015 			}
1016 			return (0);
1017 		} else if ((req->bmRequestType == UT_WRITE_CLASS_INTERFACE) &&
1018 		    (req->wIndex[0] == sc->sc_ctrl_iface_no) &&
1019 		    (req->wIndex[1] == 0x00) &&
1020 		    (req->bRequest == UCDC_SET_COMM_FEATURE)) {
1021 			if (offset == 0) {
1022 				*plen = sizeof(sc->sc_abstract_state);
1023 				*pptr = &sc->sc_abstract_state;
1024 			} else {
1025 				*plen = 0;
1026 			}
1027 			return (0);
1028 		} else if ((req->bmRequestType == UT_WRITE_CLASS_INTERFACE) &&
1029 		    (req->wIndex[0] == sc->sc_ctrl_iface_no) &&
1030 		    (req->wIndex[1] == 0x00) &&
1031 		    (req->bRequest == UCDC_SET_CONTROL_LINE_STATE)) {
1032 			*plen = 0;
1033 			return (0);
1034 		} else if ((req->bmRequestType == UT_WRITE_CLASS_INTERFACE) &&
1035 		    (req->wIndex[0] == sc->sc_ctrl_iface_no) &&
1036 		    (req->wIndex[1] == 0x00) &&
1037 		    (req->bRequest == UCDC_SEND_BREAK)) {
1038 			*plen = 0;
1039 			return (0);
1040 		}
1041 	}
1042 	return (ENXIO);			/* use builtin handler */
1043 }
1044